Skip to content
Snippets Groups Projects
Commit 18ed34bd authored by Ruben Vorderman's avatar Ruben Vorderman
Browse files

improved testing script

parent 58c0da16
No related branches found
No related tags found
1 merge request!34Move all files to version 1.0
language: java
script:
- set -e
- wget https://github.com/broadinstitute/cromwell/releases/download/31/womtool-31.jar
- for F in `find -name "*.wdl"`; do echo $F; java -jar womtool-31.jar validate $F; done
- export CROMWELL_VERSION=34
- wget https://github.com/broadinstitute/cromwell/releases/download/$CROMWELL_VERSION/womtool-$CROMWELL_VERSION.jar
- for F in $(git ls-files *.wdl); do echo $F; java -jar womtool-$CROMWELL_VERSION.jar validate $F; done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment