Skip to content

Commit 1ba1d6e

Browse files
authored
Merge branch 'main' into enhancement/cwl-inputs-schema-gen
2 parents 1d65704 + 67dbfa5 commit 1ba1d6e

File tree

10 files changed

+838
-1471
lines changed

10 files changed

+838
-1471
lines changed

.github/workflows/ci-tests.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565

6666
- name: Upload coverage to Codecov
6767
if: ${{ matrix.step == 'unit' }}
68-
uses: codecov/codecov-action@v4.2.0
68+
uses: codecov/codecov-action@v4.3.1
6969
env:
7070
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
7171
with:
@@ -121,12 +121,12 @@ jobs:
121121
122122
- name: pull some containers
123123
run: |
124-
export CWL_SINGULARITY_CACHE=$(echo $GITHUB_WORKSPACE)/singularity_cache
125-
mkdir -p ${CWL_SINGULARITY_CACHE}
126-
singularity pull --name ${CWL_SINGULARITY_CACHE}/node_alpine.sif docker://docker.io/node:alpine
127-
ls -lh ${CWL_SINGULARITY_CACHE}
128-
echo ${CWL_SINGULARITY_CACHE}
129-
echo "CWL_SINGULARITY_CACHE=${CWL_SINGULARITY_CACHE}" >> $GITHUB_ENV
124+
export CWL_SINGULARITY_CACHE=$GITHUB_WORKSPACE/singularity_cache
125+
mkdir -p "${CWL_SINGULARITY_CACHE}"
126+
singularity pull --name "${CWL_SINGULARITY_CACHE}/node_alpine.sif" docker://docker.io/node:alpine
127+
ls -lh "${CWL_SINGULARITY_CACHE}"
128+
echo "${CWL_SINGULARITY_CACHE}"
129+
echo "CWL_SINGULARITY_CACHE=${CWL_SINGULARITY_CACHE}" >> "$GITHUB_ENV"
130130
131131
- name: Set up Python
132132
uses: actions/setup-python@v5

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ cwl_utils/parser/cwl_v1_1.py: FORCE
210210
cwl_utils/parser/cwl_v1_2.py: FORCE
211211
schema-salad-tool --codegen python \
212212
--codegen-parser-info "org.w3id.cwl.v1_2" \
213-
https://github.com/common-workflow-language/cwl-v1.2/raw/1.2.1_proposed/CommonWorkflowLanguage.yml \
213+
https://github.com/common-workflow-language/cwl-v1.2/raw/codegen/CommonWorkflowLanguage.yml \
214214
> $@
215215

216216
regen_parsers: cwl_utils/parser/cwl_v1_*.py

cwl_utils/__meta__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# SPDX-License-Identifier: Apache-2.0
22
"""Global version number for the cwl_utils package."""
3-
__version__ = "0.32"
3+
__version__ = "0.33"

0 commit comments

Comments
 (0)