Skip to content

Commit 5e41bda

Browse files
committed
Update paths for the CWL v1.2 conformance tests now that 1.2.1 has been released.
1 parent dd2e1ba commit 5e41bda

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ jobs:
204204
env:
205205
VERSION: ${{ matrix.cwl-version }}
206206
CONTAINER: ${{ matrix.container }}
207-
GIT_TARGET: ${{ matrix.cwl-version == 'v1.2' && '1.2.1_proposed' || 'main' }}
207+
GIT_TARGET: main
208208
CWLTOOL_OPTIONS: ${{ matrix.cwl-version == 'v1.2' && '--relax-path-checks' || '' }} ${{ matrix.extras }}
209209
run: ./conformance-test.sh
210210
- name: Archive test results

conformance-test.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ venv() {
1313
}
1414

1515
# Set these variables when running the script, e.g.:
16-
# VERSION=v1.2 GIT_TARGET=1.2.1_proposed CONTAINER=podman ./conformance_test.sh
16+
# VERSION=v1.2 GIT_TARGET=main CONTAINER=podman ./conformance_test.sh
1717

1818
# Version of the standard to test against
1919
# Current options: v1.0, v1.1, v1.2
2020
VERSION=${VERSION:-"v1.2"}
2121

2222
# Which commit of the standard's repo to use
23-
# Defaults to the last commit of the 1.2.1_proposed branch
24-
GIT_TARGET=${GIT_TARGET:-"1.2.1_proposed"}
23+
# Defaults to the last commit of the main branch
24+
GIT_TARGET=${GIT_TARGET:-"main"}
2525

2626
# Which container runtime to use
2727
# Valid options: docker, singularity

0 commit comments

Comments
 (0)