New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
install_new_branch.sh in branches/2015/dev_r5092_CNRS18_TRUST/NEMOGCM/TRUST – NEMO

source: branches/2015/dev_r5092_CNRS18_TRUST/NEMOGCM/TRUST/install_new_branch.sh @ 8780

Last change on this file since 8780 was 8780, checked in by nicolasmartin, 6 years ago

Push modifications from functional Trusting in Curie HPC

  • Property svn:executable set to *
File size: 2.9 KB
RevLine 
[5788]1#!/bin/bash
2
3
[5799]4cd $( dirname $0 )
[5788]5
[5799]6## Set defaults
7##---------------------------------------------------
8TRUS_DBUG=0; TRUS_PROD=0; TRUS_HELP=0
9
10
11## Get options (for replacing initials settings)
12##---------------------------------------------------
[5788]13while [ $# -ne 0 ]; do
14    case $1 in
[5799]15   '-d'|'--debug'  ) TRUS_DBUG=1 ; shift  ;; '-j'|'--job'     ) TRUS_NPRO=$2; shift 2;;
16   '-m'|'--machine') TRUS_HPCC=$2; shift 2;; '-h'|'--help'    ) TRUS_HELP=1 ; shift  ;;
[5929]17   '-u'|'--user'   ) TRUS_USER=$2; shift 2;; "*"             ) TRUS_HELP=1 ; shift  ;;
[5788]18    esac
19done
20
[5799]21
22## Initialization (HPC & user environment)
23##---------------------------------------------------
[8780]24if [[ ! -e cfg/${TRUS_USER}.cfg || ! -e cfg/${TRUS_HPCC}.cfg || ${TRUS_HELP} -eq 1 ]]; then
[5929]25    cat ./inc/trusting_help.txt
[5799]26
27    if [ ${TRUS_HELP} -eq 0 ]; then
28   printf "\n\n\033[0;33m"
29   printf "At least one configuration (arch or user) file is missing or misspelled:"
30   printf "\t'%s'.cfg\t'%s'.cfg" ${TRUS_USER} ${TRUS_HPCC}
31   printf "\033[0m"
32    fi
33
34    printf "\n\nContent of 'config' folder:\n"
35    find config -name *.cfg | cut -d/ -f2 \
36   | xargs -n 4 printf "\t- %-25s\t- %-25s\t- %-25s\t- %-25s\n"
[5788]37    exit 1
38else
[5929]39    . ./inc/trusting.env
[5799]40    [ ${TRUS_DBUG} -eq 1 ] && set -vx
[5788]41fi
42
43
[5799]44## List last branches from NEMO Forge
45##---------------------------------------------------
46printf "\nWhat branch do you want to install in "${TRUS_WORK}" for trusting test ? "
47echo 'Enter 0 to abort'
48select branch in 'trunk' $( svn ls ${TRUS_SVNH}/branches/2015 | tr -d / | sort -r ); do
[5788]49
[5799]50    if [ $REPLY -eq 0 ]; then exit 1; else export TRUS_BRAN=$branch; fi
[5788]51
[5799]52    printf "\nInstallation of a working copy of '%s' branch in '%s'? " ${TRUS_BRAN} ${TRUS_WORK}
[5929]53    printf "\nType [Y|y|yes] to confirm, if not back to branches list number\n"
[5799]54    read answer
55    [[ $answer == 'Y' || $answer == 'y' || $answer == 'yes' ]] && break
[5788]56
57done
58
[5799]59echo
[5788]60
61
[5799]62## First checkout of selected branch
63##---------------------------------------------------
64echo 'Initial checkout of '${TRUS_BRAN}' branch'
65mkdir -p ${TRUS_WORK}/${TRUS_BRAN}/NEMOGCM
66cd       ${TRUS_WORK}/${TRUS_BRAN}/NEMOGCM
67
68svn_bran=branches/2015/${TRUS_BRAN}
69[ ${TRUS_BRAN} == 'trunk' ] && svn_bran=${TRUS_BRAN}
70
71for elmt in ${TRUS_CKOT}; do
[5929]72    [ $elmt == '\' ] && continue
[5799]73    printf "%s " $elmt
74
75    if [ $elmt == 'TOOLS/maketools' ]; then
76   svn co -q ${TRUS_SVNH}/${svn_bran}/NEMOGCM/TOOLS --depth empty
77   svn up -q $elmt
78    else
79   svn co -q ${TRUS_SVNH}/${svn_bran}/NEMOGCM/$elmt $elmt
[5788]80    fi
[5799]81
[5788]82done
[5799]83
[5788]84printf "\n\n"
85
[5799]86
87## Compile rebuild_nemo.exe in anticipation
88##---------------------------------------------------
89if [ $( find ARCH -name arch-${TRUS_HPCC}.fcm ) ]; then
[5788]90    echo 'Compile NEMO rebuild tool'
[5929]91    cd TOOLS && ./maketools -n REBUILD_NEMO -m ${TRUS_HPCC} -j ${TRUS_NPRO} >& /dev/null
92    [ -e REBUILD_NEMO/rebuild_nemo.exe ] && printf "\033[0;32mOK\033[0m" || printf "\033[0;31mKO\033[0m"
[5788]93    printf "\n\n"
94else
95    printf "\033[0;31mNo arch file found to compile NEMO rebuild tool\033[0m\n\n"
96fi
[5799]97
98exit 0
99
Note: See TracBrowser for help on using the repository browser.