From 7e0e0601f5f20003db4e8955503edfc8e003dd8f Mon Sep 17 00:00:00 2001 From: Ward Vandewege Date: Tue, 12 Oct 2021 15:52:41 -0400 Subject: [PATCH] 18264: switch to running the 1.2 version of the CWL conformance tests. Arvados-DCO-1.1-Signed-off-by: Ward Vandewege --- jenkins/run-cwl-test-suite.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jenkins/run-cwl-test-suite.sh b/jenkins/run-cwl-test-suite.sh index cad0c34..775ab81 100755 --- a/jenkins/run-cwl-test-suite.sh +++ b/jenkins/run-cwl-test-suite.sh @@ -104,13 +104,13 @@ if [[ "$ARVADOS_API_HOST" == "" ]] || [[ "$ARVADOS_API_TOKEN" == "" ]]; then exit 1 fi -if [[ ! -e common-workflow-language ]]; then - git clone --depth 1 https://github.com/common-workflow-language/common-workflow-language.git +if [[ ! -e cwl-v1.2 ]]; then + git clone --depth 1 https://github.com/common-workflow-language/cwl-v1.2.git fi printf "%s\n%s\n" '#!/bin/sh' 'exec arvados-cwl-runner --api containers --compute-checksum --disable-reuse --eval-timeout 60 "$@"' > arvados-cwl-runner-with-checksum.sh chmod 755 arvados-cwl-runner-with-checksum.sh -cd common-workflow-language +cd cwl-v1.2 git pull ./run_test.sh -j$JOBS --timeout=900 RUNNER=../arvados-cwl-runner-with-checksum.sh -Sdocker_entrypoint -- 2.30.2