We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65bc78d commit 042b39dCopy full SHA for 042b39d
1 file changed
ci/scripts/run_tests.sh
@@ -5,11 +5,16 @@ set -o xtrace
5
BENCHMARK="${BENCHMARK:-false}"
6
7
# Ensure we run additional tests when testing the latest coiled-runtime
8
-if [[ "$COILED_RUNTIME_VERSION" =~ latest|AB_ ]]
+if [[ "$COILED_RUNTIME_VERSION" = 'latest' ]]
9
then
10
EXTRA_OPTIONS="--run-latest"
11
export COILED_SOFTWARE_NAME=$(cat software_name.txt)
12
export TEST_UPSTREAM=$(cat test_upstream.txt)
13
+elif [[ "$COILED_RUNTIME_VERSION" =~ AB_ ]]
14
+then
15
+ EXTRA_OPTIONS=""
16
+ export COILED_SOFTWARE_NAME=$(cat software_name.txt)
17
+ export TEST_UPSTREAM=$(cat test_upstream.txt)
18
else
19
EXTRA_OPTIONS=""
20
unset COILED_SOFTWARE_NAME
0 commit comments