1 | #!/bin/bash |
---|
2 | |
---|
3 | #set -vx |
---|
4 | unset LANG |
---|
5 | |
---|
6 | ##################################################################### |
---|
7 | # Choix eventuel de la version : branche ou trunk et svn particuliere |
---|
8 | # Le script est lancé tous les soirs par un script sur lmdz-cq par lmdz |
---|
9 | # On peut aussi le relancé depuis la même machine en interactif |
---|
10 | # si le trusting de la nuit a échoué, soit que la raison soit extérieure |
---|
11 | # au modèle, soit qu'on fasse une correction svn entre temps : |
---|
12 | # ./creation_modipsl.sh -force -latest 20221004 |
---|
13 | # où la dernière version ayant marché est 20221004.trunk |
---|
14 | ##################################################################### |
---|
15 | |
---|
16 | branche=IPSLCM6.0.15 |
---|
17 | branche=trunk |
---|
18 | rev="-r 4370" |
---|
19 | rev="" |
---|
20 | latest="" |
---|
21 | latest="20230902" |
---|
22 | latest="20231102" |
---|
23 | latest="20231215" |
---|
24 | #latest=20210512 # Pour imposer de tester la convergence avec une version passee |
---|
25 | |
---|
26 | TMP_D=/tmp/lmdz ; mkdir -p $TMP_D |
---|
27 | |
---|
28 | if [ $branche != trunk ] ; then |
---|
29 | echo cas non prevu |
---|
30 | # exit |
---|
31 | fi |
---|
32 | |
---|
33 | check=0 |
---|
34 | check=1 # On verifie un certain nombre de choses. |
---|
35 | force=0 |
---|
36 | |
---|
37 | optionnel=" -cpp ORCHIDEE_NOZ0H " |
---|
38 | |
---|
39 | local=`pwd` |
---|
40 | while (($# > 0)) ; do |
---|
41 | case $1 in |
---|
42 | "-h") cat <<fin |
---|
43 | USAGE creation_modipsl.sh |
---|
44 | Crée les archives du modele pour installation par install.sh |
---|
45 | -force : pour créeer une seconde version le meme jour |
---|
46 | fin |
---|
47 | exit ;; |
---|
48 | "-force") force=1 ; shift ;; |
---|
49 | "-r") rev="-r $2" ; shift ; shift ;; |
---|
50 | "-b") branche="$2" ; shift ; shift ;; |
---|
51 | "-latest") latest=$2 ; shift ; shift ;; |
---|
52 | *) echo option non prevue ; ./creation_modipsl.sh -h ; exit |
---|
53 | esac |
---|
54 | done |
---|
55 | |
---|
56 | # machine_cible=erskine.lmd.jussieu.fr |
---|
57 | #machine_cible=carey |
---|
58 | machine_cible=lmdz-cq |
---|
59 | if [ "`hostname`" != "$machine_cible" ] ; then echo Lancer sur $machine_cible ; exit ; fi |
---|
60 | set -ex |
---|
61 | |
---|
62 | ########################################################################### |
---|
63 | # localisation svn |
---|
64 | ########################################################################### |
---|
65 | # cvs -d :pserver:lmdzbrowse@cvs.lmd.jussieu.fr:/home/cvsroot checkout LMDZ5 |
---|
66 | LMDZv=LMDZ6 |
---|
67 | if [ $LMDZv = LMDZ6 ] ; then |
---|
68 | LMDZ=LMDZ |
---|
69 | else |
---|
70 | LMDZ=LMDZ5 |
---|
71 | fi |
---|
72 | |
---|
73 | if [ $branche == trunk ] ; then |
---|
74 | branchepath=trunk |
---|
75 | else |
---|
76 | branchepath=branches/$branche |
---|
77 | fi |
---|
78 | svnmodel=http://svn.lmd.jussieu.fr/LMDZ/$LMDZv/$branchepath |
---|
79 | |
---|
80 | |
---|
81 | ########################################################################## |
---|
82 | # Recuperation des infos svn pour le choix du nom du modele |
---|
83 | ########################################################################## |
---|
84 | echo svn info $rev $svnmodel : |
---|
85 | svn info $rev $svnmodel |
---|
86 | datesvn=`svn info $rev $svnmodel | grep "Last Changed Date" | awk ' { print $4 } ' | sed -e 's/-//g'` |
---|
87 | echo DATESVN $datesvn |
---|
88 | |
---|
89 | if [ "$datesvn" = "" ] ; then |
---|
90 | # DATESVN vide |
---|
91 | datesvn=`svn info http://svn.lmd.jussieu.fr/LMDZ/$LMDZv/$branchepath $rev | grep 'Date de la dern' | awk ' { print $6 } ' | sed -e 's/-//g'` |
---|
92 | fi |
---|
93 | echo datesvn $datesvn |
---|
94 | version=$datesvn.$branche |
---|
95 | echo version $version |
---|
96 | |
---|
97 | ########################################################################## |
---|
98 | # Sauvegarde eventuelle de la version precedente si deux versions |
---|
99 | # sont creees le meme jour |
---|
100 | ########################################################################## |
---|
101 | if [ -f modipsl.$version.tar.gz ] ; then |
---|
102 | if [ $force = 1 ] ; then |
---|
103 | if [ -d $TMP_D/LMDZ$version ] ; then mv -f $TMP_D/LMDZ$version $TMP_D/LMDZ${version}_$$ ; fi |
---|
104 | cd /home/users/lmdz/WWW/RESUBENCH/$branche/gfortran |
---|
105 | if [ -f ${datesvn} ] ; then mv -f ${datesvn} ${datesvn}_$$ ; fi |
---|
106 | ln -sf ${datesvn}_$$ latest |
---|
107 | cd $local |
---|
108 | if [ -f modipsl.$version.tar.gz ] ; then mv modipsl.$version.tar.gz modipsl.${version}_$$.tar.gz ; fi |
---|
109 | echo ${datesvn} ${datesvn}_$$ |
---|
110 | else |
---|
111 | echo Le fichier modipsl.$version.tar.gz existe deja |
---|
112 | echo Preparer un changement automatique de nom pour automatiser |
---|
113 | echo la creation de plusieurs versions dans la journee |
---|
114 | exit |
---|
115 | fi |
---|
116 | fi |
---|
117 | |
---|
118 | |
---|
119 | if [ "$latest" != "" ] ; then |
---|
120 | cd /home/users/lmdz/WWW/RESUBENCH/$branche/gfortran |
---|
121 | \rm -f latest |
---|
122 | ln -s `pwd`/$latest latest |
---|
123 | cd - |
---|
124 | fi |
---|
125 | |
---|
126 | ##################################################################### |
---|
127 | # Les fichiers modipsl.vN.tar.gz contiennent des versions successives |
---|
128 | # de IOIPSL |
---|
129 | # Les versions modipsl.20080305.v5.tar.gz contiennent des versions |
---|
130 | # successives avec de modipsl les dates correspondant a des versions |
---|
131 | # successives de LMDZ4 puis LMDZ5 |
---|
132 | ##################################################################### |
---|
133 | vorig=v8 # updated version of IOIPSL 04/04/2012, including 'rebuild' script |
---|
134 | vorig=v9 # updated version of IOIPSL 07/08/2013, modfication de AA_male.ldef pour g95 |
---|
135 | vorig=v10 # 'rebuild' is reintroduced in v9 . Was lost even in v8 ... (FH) |
---|
136 | vorig=v11 # update ORCHIDEE version to r2247, changes needed in install.sh for ORCHIDEE compilation |
---|
137 | vorig=v12 # modification AA_make.gdef pour ada. on garde g95 pour install alors qu'il a disparu dans modipsl |
---|
138 | vorig=v13 # mise a jour ORCHIDEE (r3013) pour problème d'interface après le rajout de sinang=rmu0 dans surf_land_orchidee_mod.F90 |
---|
139 | vorig=v14 # dans ioipsl/histcom.f9, nb_var_max : 600 -> 1OOO, nb_zax_max : 5 -> 100, flio_max_dims : 15 -> 50 pour rebuild cosp |
---|
140 | vorig=v15 # modifications pour tenir compte de jean-zay nouvelle machine Idris |
---|
141 | vorig=v16 # 2022/02/17 on bascule sur orchidee CMIP6 |
---|
142 | vorig=v18 # 2023/03/09 modification ORCHIDEE pour compatibilité IOIPSL: on rajoute 360_day comme attribut |
---|
143 | vorig=v19 # 2023/03/10 IOIPSL updated to version 2.2.5 |
---|
144 | |
---|
145 | modipsltar=modipsl.$vorig.tar |
---|
146 | |
---|
147 | ##### tmpdir=/tmp/tmpmodipsl$$ |
---|
148 | tmpdir=$local/tmpmodipsl$$ |
---|
149 | mkdir -p $tmpdir |
---|
150 | cd $tmpdir |
---|
151 | if [ -f /u/lmdz/WWW/Distrib/$modipsltar.gz ] ; then |
---|
152 | cp /u/lmdz/WWW/Distrib/$modipsltar.gz . |
---|
153 | else |
---|
154 | wget http://www.lmd.jussieu.fr/~lmdz/Distrib/$modipsltar.gz |
---|
155 | fi |
---|
156 | |
---|
157 | tar xvf $modipsltar.gz |
---|
158 | #gzip -9 $modipsltar |
---|
159 | |
---|
160 | readme_file=Readme_LMDZ$version.md |
---|
161 | |
---|
162 | cat > $readme_file <<eod |
---|
163 | This model was downloaded from |
---|
164 | http://www.lmd.jussieu.fr/~lmdz/pub/src_archives/unstable/modipsl.$version.tar.gz |
---|
165 | |
---|
166 | It was insalled with the \`install_lmdz.sh\` soft |
---|
167 | |
---|
168 | In order to see all the available versions, check |
---|
169 | http://www.lmd.jussieu.fr/~lmdz/pub/src_archives/unstable/Readme |
---|
170 | |
---|
171 | `` |
---|
172 | eod |
---|
173 | |
---|
174 | cd modipsl/modeles |
---|
175 | |
---|
176 | ########################################################################### |
---|
177 | # On effectue le svn checkout sur une machine avec un ancien svn |
---|
178 | # pour eviter que les utilisateurs se retrouvent avec un svn plus ancien |
---|
179 | # que celui sur lequel la version a été créée. |
---|
180 | echo Premier svn checkout $rev $svnmodel $LMDZ |
---|
181 | #ssh butler ' ( cd '`pwd`' ; svn checkout '$rev' '$svnmodel' '$LMDZ' ) ' |
---|
182 | echo svn checkout $rev $svnmodel $LMDZ |
---|
183 | svn checkout $rev $svnmodel $LMDZ |
---|
184 | svn info LMDZ >> ../../$readme_file |
---|
185 | echo '``' >> ../../$readme_file |
---|
186 | |
---|
187 | ########################################################################### |
---|
188 | |
---|
189 | cd - |
---|
190 | echo $version |
---|
191 | tar cvf modipsl.$version.tar modipsl $readme_file |
---|
192 | |
---|
193 | gzip modipsl.$version.tar |
---|
194 | mv modipsl.$version.tar.gz ~/WWW/Distrib |
---|
195 | |
---|
196 | cd ~/WWW/Distrib |
---|
197 | ln -sf modipsl.$version.tar.gz modipsl.$branche.tar.gz |
---|
198 | cd ~/WWW/pub/src_archives/unstable/ |
---|
199 | |
---|
200 | # Ajout pour la nouvelle arborescence |
---|
201 | ln -sf ../../../Distrib/modipsl.$version.tar.gz . |
---|
202 | ln -sf modipsl.$version.tar.gz modipsl.$branche.tar.gz |
---|
203 | cd ~/WWW/Distrib |
---|
204 | |
---|
205 | |
---|
206 | #################################################################### |
---|
207 | # La partie ci-dessous concerne le check des versions. |
---|
208 | # On devrait sans doute appeler rechech.sh |
---|
209 | #################################################################### |
---|
210 | |
---|
211 | if [ $check = 1 ] ; then |
---|
212 | ./check_version.sh $version >| WORK/check.out.$version 2>&1 |
---|
213 | cat tmp.resu >> Correspondance |
---|
214 | cat tmp.resu >> LISMOI.$branche |
---|
215 | \cp -f LISMOI.trunk ../pub/src_archives/Readme |
---|
216 | ### |
---|
217 | ### clean up of /tmp/lmdz if everything went smoothly |
---|
218 | ### |
---|
219 | grep -q 'OK OK OK2 OK' tmp.resu |
---|
220 | RET=$? |
---|
221 | if [ ${RET} -eq 0 ] ; then |
---|
222 | echo "Quality control checks out for version $version" |
---|
223 | echo "We could cleanup /tmp/lmdz/LMDZ$version" |
---|
224 | echo "\rm -rf /tmp/lmdz/LMDZ$version" |
---|
225 | \rm -rf /tmp/lmdz/LMDZ$version |
---|
226 | fi |
---|
227 | fi |
---|