X-Git-Url: https://git.arvados.org/arvados-dev.git/blobdiff_plain/530468d1224a7c2251ee54bf5ec8d1f8d875de14..2748e092a403d6d8ff11a01238e55935aba7055a:/jenkins/run-cwl-tests.sh diff --git a/jenkins/run-cwl-tests.sh b/jenkins/run-cwl-tests.sh index dcb0285..53c0538 100755 --- a/jenkins/run-cwl-tests.sh +++ b/jenkins/run-cwl-tests.sh @@ -156,24 +156,63 @@ fi cd "$WORKSPACE" -pushd reference -python setup.py install -python setup.py test -./build-node-docker.sh -popd +if test -d cwltool ; then + (cd cwltool + git fetch + git reset --hard origin/master + ) +else + git clone git@github.com:common-workflow-language/cwltool.git + (cd cwltool + git config user.email "sysadmin@curoverse.com" + git config user.name "Curoverse build bot" + ) +fi + +(cd cwltool + python setup.py install + python setup.py test + ./build-node-docker.sh +) -pushd conformance -pwd -./run_test.sh -popd +./run_test.sh RUNNER=cwltool/cwltool/main.py DRAFT=draft-2 +./run_test.sh RUNNER=cwltool/cwltool/main.py DRAFT=draft-3 -cd reference -handle_python_package +(cd cwltool + handle_python_package +) -./build-cwl-docker.sh +(cd cwltool/cwl-runner + handle_python_package +) + +(cd cwltool + ./build-cwl-docker.sh +) if [[ "$UPLOAD_DOCKER" != 0 ]]; then docker push commonworkflowlanguage/cwltool_module docker push commonworkflowlanguage/cwltool docker push commonworkflowlanguage/nodejs-engine fi + +if test -d common-workflow-language.github.io ; then + (cd common-workflow-language.github.io + git fetch + git reset --hard origin/master + ) +else + git clone git@github.com:common-workflow-language/common-workflow-language.github.io.git + (cd common-workflow-language.github.io + git config user.email "sysadmin@curoverse.com" + git config user.name "Curoverse build bot" + ) +fi + +python -mcwltool --outdir=$PWD/common-workflow-language.github.io site/cwlsite.cwl site/cwlsite-job.json + +(cd common-workflow-language.github.io + git add --all + git diff-index --quiet HEAD || git commit -m"Build bot" + git push +)