We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d40988 commit b89668bCopy full SHA for b89668b
jenkins.bash
@@ -23,9 +23,12 @@ python setup.py install
23
pip install "cwltest>=1.0.20160825151655"
24
pushd common-workflow-language
25
git clean --force -d -x || /bin/true
26
-if [ $version = *dev ] then
+# shellcheck disable=SC2154
27
+if [[ "$version" = *dev ]]
28
+then
29
EXTRA="EXTRA=--enable-dev"
-./run_test.sh --junit-xml=result.xml RUNNER=cwltool DRAFT=${version} ${EXTRA}
30
+fi
31
+./run_test.sh --junit-xml=result.xml RUNNER=cwltool DRAFT="${version}" ${EXTRA}
32
CODE=$?
33
popd
34
if [ "$GIT_BRANCH" = "origin/master" ]
0 commit comments