Skip to content

Commit

Permalink
Merge branch 'main' into enhancement/cwl-inputs-schema-gen
Browse files Browse the repository at this point in the history
  • Loading branch information
alexiswl committed May 7, 2024
2 parents 1d65704 + 67dbfa5 commit 1ba1d6e
Show file tree
Hide file tree
Showing 10 changed files with 838 additions and 1,471 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:

- name: Upload coverage to Codecov
if: ${{ matrix.step == 'unit' }}
uses: codecov/codecov-action@v4.2.0
uses: codecov/codecov-action@v4.3.1
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
Expand Down Expand Up @@ -121,12 +121,12 @@ jobs:
- name: pull some containers
run: |
export CWL_SINGULARITY_CACHE=$(echo $GITHUB_WORKSPACE)/singularity_cache
mkdir -p ${CWL_SINGULARITY_CACHE}
singularity pull --name ${CWL_SINGULARITY_CACHE}/node_alpine.sif docker://docker.io/node:alpine
ls -lh ${CWL_SINGULARITY_CACHE}
echo ${CWL_SINGULARITY_CACHE}
echo "CWL_SINGULARITY_CACHE=${CWL_SINGULARITY_CACHE}" >> $GITHUB_ENV
export CWL_SINGULARITY_CACHE=$GITHUB_WORKSPACE/singularity_cache
mkdir -p "${CWL_SINGULARITY_CACHE}"
singularity pull --name "${CWL_SINGULARITY_CACHE}/node_alpine.sif" docker://docker.io/node:alpine
ls -lh "${CWL_SINGULARITY_CACHE}"
echo "${CWL_SINGULARITY_CACHE}"
echo "CWL_SINGULARITY_CACHE=${CWL_SINGULARITY_CACHE}" >> "$GITHUB_ENV"
- name: Set up Python
uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ cwl_utils/parser/cwl_v1_1.py: FORCE
cwl_utils/parser/cwl_v1_2.py: FORCE
schema-salad-tool --codegen python \
--codegen-parser-info "org.w3id.cwl.v1_2" \
https://github.com/common-workflow-language/cwl-v1.2/raw/1.2.1_proposed/CommonWorkflowLanguage.yml \
https://github.com/common-workflow-language/cwl-v1.2/raw/codegen/CommonWorkflowLanguage.yml \
> $@

regen_parsers: cwl_utils/parser/cwl_v1_*.py
Expand Down
2 changes: 1 addition & 1 deletion cwl_utils/__meta__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# SPDX-License-Identifier: Apache-2.0
"""Global version number for the cwl_utils package."""
__version__ = "0.32"
__version__ = "0.33"
Loading

0 comments on commit 1ba1d6e

Please sign in to comment.