File tree 2 files changed +10
-9
lines changed
2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 24
24
- python : " 3.6"
25
25
- python : " 3.7"
26
26
- 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
27
37
- python : " 3.7"
28
38
script : RELEASE_SKIP=head ${TRAVIS_BUILD_DIR}/release-test.sh
29
39
script : tox
Original file line number Diff line number Diff line change 1
1
#! /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
8
2
venv () {
9
3
if ! test -d " $1 " ; then
10
4
virtualenv -p python" ${PYTHON_VERSION} " " $1 "
@@ -13,8 +7,6 @@ venv() {
13
7
source " $1 " /bin/activate
14
8
}
15
9
16
- # clean both the repos before the loop
17
- git clean --force -d -x || /bin/true
18
10
wget https://github.com/common-workflow-language/common-workflow-language/archive/master.tar.gz
19
11
tar xzf master.tar.gz && rm master.tar.gz
20
12
docker pull node:slim
@@ -28,7 +20,6 @@ for CONTAINER in docker
28
20
# singularity having issues on ci.commonwl.org; tests pass with https://gist.github.com/mr-c/0ec90d717617d074017c0cb38b72d1a4
29
21
do
30
22
venv cwltool-venv${PYTHON_VERSION}
31
- export PIP_DOWNLOAD_CACHE=/var/lib/jenkins/pypi-cache/
32
23
# use pip2.7 and pip3 in separate loop runs
33
24
pip${PYTHON_VERSION} install -U setuptools wheel pip
34
25
pip${PYTHON_VERSION} uninstall -y cwltool
You can’t perform that action at this time.
0 commit comments