X-Git-Url: https://git.arvados.org/arvados-dev.git/blobdiff_plain/a572ef644ee17b0a61e039ce691a39554031aa73..121e7a814e34136e77191f2eb1951ad27a623453:/jenkins/run-cwl-tests.sh diff --git a/jenkins/run-cwl-tests.sh b/jenkins/run-cwl-tests.sh index 74e9999..730261b 100755 --- a/jenkins/run-cwl-tests.sh +++ b/jenkins/run-cwl-tests.sh @@ -159,7 +159,7 @@ cd "$WORKSPACE" pushd reference python setup.py install python setup.py test -./docker-node-engine.sh +./build-node-docker.sh popd pushd conformance @@ -173,6 +173,32 @@ handle_python_package ./build-cwl-docker.sh if [[ "$UPLOAD_DOCKER" != 0 ]]; then + docker push commonworkflowlanguage/cwltool_module docker push commonworkflowlanguage/cwltool docker push commonworkflowlanguage/nodejs-engine fi + +# Setup virtualenv and build documentation. + +virtualenv ../venv +. ../venv/bin/activate +python setup.py install +cd .. + +if test -d common-workflow-language.github.io ; then + cd common-workflow-language.github.io + git fetch + git reset --hard origin/master + cd .. +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" + cd .. +fi +python -mcwltool specification/cwlsite.cwl specification/cwlsite-job.json --outdir=$PWD/common-workflow-language.github.io +cd common-workflow-language.github.io +git add --all +git diff-index --quiet HEAD || git commit -m"Build bot" +git push