Skip to content

Commit

Permalink
Updating matrix approach in yml files to include inputs and options j…
Browse files Browse the repository at this point in the history
…sons
  • Loading branch information
tefirman committed Dec 18, 2024
1 parent de370b9 commit a3b8bd1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cromwell-test-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
strategy:
matrix:
wdl:
- helloHostname/helloHostname.wdl
- helloModuleHostname/helloModuleHostname.wdl
- helloDockerHostname/helloDockerHostname.wdl
- helloHostname
- helloModuleHostname
- helloDockerHostname
steps:
-
name: Checkout
Expand All @@ -30,5 +30,5 @@ jobs:
run: wget -q https://github.com/broadinstitute/cromwell/releases/download/86/cromwell-86.jar
-
name: Execute Test Run of WDL Workflows
run: java -jar cromwell-86.jar run ${{ matrix.wdl }}
run: java -jar cromwell-86.jar run ${{ matrix.wdl }}/${{ matrix.wdl }}.wdl -i ${{ matrix.wdl }}/inputs.json -o ${{ matrix.wdl }}/options.json

8 changes: 4 additions & 4 deletions .github/workflows/womtools-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
strategy:
matrix:
wdl:
- helloHostname/helloHostname.wdl
- helloModuleHostname/helloModuleHostname.wdl
- helloDockerHostname/helloDockerHostname.wdl
- helloHostname
- helloModuleHostname
- helloDockerHostname
steps:
-
name: Checkout
Expand All @@ -33,7 +33,7 @@ jobs:
run: wget -q https://github.com/broadinstitute/cromwell/releases/download/86/womtool-86.jar
-
name: Validate WDL Scripts
run: java -jar womtool-86.jar validate ${{ matrix.wdl }}
run: java -jar womtool-86.jar validate ${{ matrix.wdl }}/${{ matrix.wdl }}.wdl -i ${{ matrix.wdl }}/inputs.json



0 comments on commit a3b8bd1

Please sign in to comment.