From 5e41bda52c8b24643aa4b4de86172365bd1c8ff7 Mon Sep 17 00:00:00 2001 From: "Michael R. Crusoe" Date: Sat, 20 Apr 2024 18:57:08 +0200 Subject: [PATCH] Update paths for the CWL v1.2 conformance tests now that 1.2.1 has been released. --- .github/workflows/ci-tests.yml | 2 +- conformance-test.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index ae295e534..6cd20a3d4 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -204,7 +204,7 @@ jobs: env: VERSION: ${{ matrix.cwl-version }} CONTAINER: ${{ matrix.container }} - GIT_TARGET: ${{ matrix.cwl-version == 'v1.2' && '1.2.1_proposed' || 'main' }} + GIT_TARGET: main CWLTOOL_OPTIONS: ${{ matrix.cwl-version == 'v1.2' && '--relax-path-checks' || '' }} ${{ matrix.extras }} run: ./conformance-test.sh - name: Archive test results diff --git a/conformance-test.sh b/conformance-test.sh index 9506c28bb..cdc57f69f 100755 --- a/conformance-test.sh +++ b/conformance-test.sh @@ -13,15 +13,15 @@ venv() { } # Set these variables when running the script, e.g.: -# VERSION=v1.2 GIT_TARGET=1.2.1_proposed CONTAINER=podman ./conformance_test.sh +# VERSION=v1.2 GIT_TARGET=main CONTAINER=podman ./conformance_test.sh # Version of the standard to test against # Current options: v1.0, v1.1, v1.2 VERSION=${VERSION:-"v1.2"} # Which commit of the standard's repo to use -# Defaults to the last commit of the 1.2.1_proposed branch -GIT_TARGET=${GIT_TARGET:-"1.2.1_proposed"} +# Defaults to the last commit of the main branch +GIT_TARGET=${GIT_TARGET:-"main"} # Which container runtime to use # Valid options: docker, singularity