mirror of
https://github.com/JHUAPL/kaiju.git
synced 2026-01-09 15:17:56 -05:00
60 lines
1.6 KiB
Bash
60 lines
1.6 KiB
Bash
#!/bin/bash
|
|
|
|
#PBS -N {{ job_name }}
|
|
#PBS -A {{ account }}
|
|
#PBS -q {{ queue }}
|
|
#PBS -l job_priority={{ job_priority }}
|
|
#PBS -l walltime=02:00:00
|
|
#PBS -l select=1:ncpus=128:ompthreads=128
|
|
#PBS -j oe
|
|
#PBS -m abe
|
|
|
|
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 'Setting up MAGE environment.'
|
|
source {{ kaijuhome }}/scripts/setupEnvironment.sh
|
|
|
|
echo 'Setting environment variables.'
|
|
export TMPDIR={{ tmpdir }}
|
|
export SLACK_BOT_TOKEN={{ slack_bot_token }}
|
|
export DERECHO_TESTING_ACCOUNT={{ account }}
|
|
export BRANCH_OR_COMMIT={{ branch_or_commit }}
|
|
export MAGE_TEST_SET_ROOT={{ mage_test_set_root }}
|
|
echo 'The active environment variables are:'
|
|
printenv
|
|
|
|
# Create the report.
|
|
python ${KAIJUHOME}/testingScripts/intelChecksReport.py {{ report_options }}
|
|
|
|
echo "Job $PBS_JOBID ended at `date` on `hostname` in directory `pwd`."
|