diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cb1ceba1b2ea749b4e2604c7e8cac9898c7bbb3f..a516f59ce00b4e4d8d09fe8a97c2589687c0c340 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -78,6 +78,22 @@ real-from-dwd-ana: artifacts: name: real-from-dwd-ana-logs when: always + paths: + - ./autosubmit/**/tmp + expire_in: 7 days + +real-from-dwd-ana-B6: + stage: run_tests + script: + - ./examples/02_real-from-dwd-ana_B6.sh + tags: + - slurm.meteo.physik.lmu.de + variables: + SRUN_OPTIONS: "--time 04:00:00 --mem 64G -n 16 -c 2" + + artifacts: + name: real-from-dwd-ana-B6-logs + when: always paths: - ./autosubmit/**/tmp expire_in: 7 days \ No newline at end of file diff --git a/examples/02_real-from-dwd-ana_B6.sh b/examples/02_real-from-dwd-ana_B6.sh new file mode 100755 index 0000000000000000000000000000000000000000..23da15417a2162883fd33a8cbda8b2384d40081d --- /dev/null +++ b/examples/02_real-from-dwd-ana_B6.sh @@ -0,0 +1,21 @@ +#!/bin/bash +####################################################################################################################### +# Variables that are required to define the test case +EXPID="rfdaB6" +ICON_CASE="real-from-dwd-ana" +ICON_VERSION="w2w-B6" +PLATFORM="LOCAL" +EXTRA_NAMELIST="" +EXTRA_CONFIGURATION="" + +####################################################################################################################### +set -euo pipefail + +# Get path to the script directory +SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)" + +# Import the function run_autoicon_example +source ${SCRIPT_DIR}/example_utils.sh + +# Setup and run the experiment +run_autoicon_example "$EXPID" "$ICON_CASE" "$ICON_VERSION" "$PLATFORM" "${EXTRA_NAMELIST}" "${EXTRA_CONFIGURATION}"