mirror of
https://github.com/JHUAPL/kaiju.git
synced 2026-01-09 02:37:55 -05:00
69 lines
1.9 KiB
Bash
69 lines
1.9 KiB
Bash
#!/bin/bash
|
|
|
|
#PBS -N {{ job_name }}
|
|
#PBS -A {{ account }}
|
|
#PBS -q {{ queue }}
|
|
#PBS -l job_priority={{ job_priority }}
|
|
#PBS -l walltime={{ walltime }}
|
|
#PBS -l select=1:ncpus=128
|
|
#PBS -j oe
|
|
#PBS -m abe
|
|
|
|
# Abort script on any error.
|
|
set -e
|
|
|
|
echo "Job $PBS_JOBID started at `date` on `hostname` in directory `pwd`."
|
|
|
|
echo 'Loading modules.'
|
|
module --force purge
|
|
{%- for module in modules %}
|
|
module load {{ module }}
|
|
{%- endfor %}
|
|
module list
|
|
|
|
echo 'Loading python environment.'
|
|
mage_test_root=$HOME
|
|
if [ -d "${mage_test_root}/miniconda3" ]; then
|
|
echo 'Loading local miniconda3'
|
|
mage_miniconda3="${mage_test_root}/miniconda3"
|
|
mage_conda="${mage_miniconda3}/bin/conda"
|
|
__conda_setup="$($mage_conda 'shell.bash' 'hook' 2> /dev/null)"
|
|
if [ $? -eq 0 ]; then
|
|
eval "$__conda_setup"
|
|
else
|
|
if [ -f "$mage_miniconda3/etc/profile.d/conda.sh" ]; then
|
|
. "$mage_miniconda3/etc/profile.d/conda.sh"
|
|
else
|
|
export PATH="$mage_miniconda3/bin:$PATH"
|
|
fi
|
|
fi
|
|
unset __conda_setup
|
|
else
|
|
echo 'Loading conda module'
|
|
module load conda
|
|
fi
|
|
conda activate {{ conda_environment }}
|
|
echo "The active conda environment is ${CONDA_DEFAULT_ENV}."
|
|
|
|
echo 'Setting up MAGE environment.'
|
|
source {{ kaijuhome }}/scripts/setupEnvironment.sh
|
|
|
|
echo 'Setting environment variables.'
|
|
export MAGE_TEST_SET_ROOT={{ mage_test_set_root }}
|
|
export SLACK_BOT_TOKEN={{ slack_bot_token }}
|
|
export BRANCH_OR_COMMIT={{ branch_or_commit }}
|
|
echo 'The active environment variables are:'
|
|
printenv
|
|
|
|
# Move to the directory containing the compiled code.
|
|
cd bin
|
|
if [[ $? -eq 1 ]]; then
|
|
python $KAIJUHOME/testingScripts/send_slack_message.py "Unit test build failed in `pwd`!"
|
|
exit 1
|
|
fi
|
|
|
|
echo 'Generating unit test report.'
|
|
python $KAIJUHOME/testingScripts/unitTestReport.py {{ report_options }} >& unitTestReport.out
|
|
|
|
echo "Job $PBS_JOBID ended at `date` on `hostname` in directory `pwd`."
|