Skip to content
Snippets Groups Projects
Commit 5cb99e4d authored by Oriol Tintó's avatar Oriol Tintó
Browse files

Adding another test case building icon from a specific hash

parent a8d67777
No related branches found
No related tags found
No related merge requests found
Pipeline #20151 failed
......@@ -70,6 +70,22 @@ real-from-ideal-psp:
- ./autosubmit/**/tmp
expire_in: 7 days
real-from-ideal-hash:
stage: run_tests
script:
- ./examples/01_real-from-ideal+hash.sh
tags:
- slurm.meteo.physik.lmu.de
variables:
SRUN_OPTIONS: "--time 04:00:00 --mem 18G -n 4 -c 2"
artifacts:
name: real-from-ideal+hash-logs
when: always
paths:
- ./autosubmit/**/tmp
expire_in: 7 days
real-from-dwd-ana:
stage: run_tests
script:
......
#!/bin/bash
#######################################################################################################################
# Variables that are required to define the test case
EXPID="rfihash"
ICON_CASE="real-from-ideal"
# That points to a specific hash in the psp branch.
ICON_VERSION="68f2b0564c03473c4ddc8eec651298133714b728"
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}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment