File tree Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 2424 - python : " 3.6"
2525 - python : " 3.7"
2626 - python : " 3.8"
27+ - python : " 3.8"
28+ name : " CWL v1.0 conformance tests"
29+ script : ${TRAVIS_BUILD_DIR}/travis.bash
30+ env :
31+ - version=v1.0
32+ - python : " 3.8"
33+ name : " CWL v1.1 conformance tests"
34+ env :
35+ - version=v1.1
36+ script : ${TRAVIS_BUILD_DIR}/travis.bash
2737 - python : " 3.7"
2838 script : RELEASE_SKIP=head ${TRAVIS_BUILD_DIR}/release-test.sh
2939script : tox
Original file line number Diff line number Diff line change 11#! /bin/bash
2- if [[ -z " ${JENKINS_URL} " ]]
3- then
4- echo " Looks like we're not being run by Jenkins, this is dangerous"
5- echo " due to use of git clean -fdx command."
6- exit 1
7- fi
82venv () {
93 if ! test -d " $1 " ; then
104 virtualenv -p python" ${PYTHON_VERSION} " " $1 "
@@ -13,8 +7,6 @@ venv() {
137 source " $1 " /bin/activate
148}
159
16- # clean both the repos before the loop
17- git clean --force -d -x || /bin/true
1810wget https://github.com/common-workflow-language/common-workflow-language/archive/master.tar.gz
1911tar xzf master.tar.gz && rm master.tar.gz
2012docker pull node:slim
@@ -28,7 +20,6 @@ for CONTAINER in docker
2820# singularity having issues on ci.commonwl.org; tests pass with https://gist.github.com/mr-c/0ec90d717617d074017c0cb38b72d1a4
2921do
3022 venv cwltool-venv${PYTHON_VERSION}
31- export PIP_DOWNLOAD_CACHE=/var/lib/jenkins/pypi-cache/
3223 # use pip2.7 and pip3 in separate loop runs
3324 pip${PYTHON_VERSION} install -U setuptools wheel pip
3425 pip${PYTHON_VERSION} uninstall -y cwltool
You can’t perform that action at this time.
0 commit comments