Changes between Version 53 and Version 54 of Developers
- Timestamp:
- 2018-06-22T12:26:22+02:00 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Developers
v53 v54 27 27 {{{#!sh 28 28 # Development organisation downloading ( trunk + branches + releases ) 29 svn co http://forge.ipsl.jussieu.fr/nemo/svn/NEMO [...]30 cd {NEMO,[...]}29 svn co --depth immediates http://forge.ipsl.jussieu.fr/nemo/svn/NEMO/ dev_orga 30 cd dev_orga 31 31 # Change from user to developer if you have the rights 32 svn sw --relocate http://forge.ipsl.jussieu.fr 33 svn+ssh:// 'ID'@forge.ipsl.jussieu.fr/ipsl/forge/projets32 svn sw --relocate http://forge.ipsl.jussieu.fr \ 33 svn+ssh://$ID@forge.ipsl.jussieu.fr/ipsl/forge/projets 34 34 # Create your development branch locally 35 svn copy trunk ...36 cd ...35 svn copy trunk[@${PEGREV}] branches/$year/'dev_r'${PEGREV}_${NameOfNewBranch} 36 cd branches/$year/'dev_r'${PEGREV}_${NameOfNewBranch} 37 37 # Download sette tool to validate your changes to the NEMO reference 38 38 svn co http://forge.ipsl.jussieu.fr/nemo/svn/utils/CI/sette … … 52 52 53 53 {{{#!sh 54 # Relative URL 55 ^/utils/build/arch '[@REV]'arch # FCM settings files for computing architectures56 ^/utils/build/makenemo '[@REV]'makenemo # Main script for building a NEMO configuration57 ^/utils/build/mk '[@REV]'mk # Sub-scripts and FCM inputs for compiling58 ^/utils/tools '[@REV]'tools # User tools59 ^/vendors/AGRIF/dev '[@REV]'ext/AGRIF # Dependency for nesting60 ^/vendors/FCM '[@REV]'ext/FCM # "" for source code compilation61 ^/vendors/IOIPSL '[@REV]'ext/IOIPSL # "" for IO management54 # Relative URL Path in WC Content 55 ^/utils/build/arch[@$REV] arch # FCM settings files for computing architectures 56 ^/utils/build/makenemo[@$REV] makenemo # Main script for building a NEMO configuration 57 ^/utils/build/mk[@$REV] mk # Sub-scripts and FCM inputs for compiling 58 ^/utils/tools[@$REV] tools # User tools 59 ^/vendors/AGRIF/dev[@$REV] ext/AGRIF # Dependency for nesting 60 ^/vendors/FCM[@$REV] ext/FCM # "" for source code compilation 61 ^/vendors/IOIPSL[@$REV] ext/IOIPSL # "" for IO management 62 62 # '^' for repository root 63 63 }}}