We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7bfd771 + 14c06b3 commit 875b928Copy full SHA for 875b928
jenkins.bash
@@ -81,9 +81,16 @@ EOF
81
then
82
EXTRA="EXTRA=${EXTRA}"
83
fi
84
+ if [[ "$version" = "v1.0" ]] && [[ "$CONTAINER" = "docker" ]] && [ $PYTHON_VERSION -eq 3 ]
85
+ then
86
+ tool_ver=$(cwltool --version | awk '{ print $2 }')
87
+ badgedir=${PWD}/conformance/cwltool/cwl_${version}/cwltool_${tool_ver}
88
+ mkdir -p ${PWD}/conformance/cwltool/cwl_${version}/
89
+ BADGE=" --badgedir=${badgedir}"
90
+ fi
91
# shellcheck disable=SC2086
92
LC_ALL=C.UTF-8 ./run_test.sh --junit-xml=result${PYTHON_VERSION}.xml \
- RUNNER=${CWLTOOL_WITH_COV} "-j$(nproc)"\
93
+ RUNNER=${CWLTOOL_WITH_COV} "-j$(nproc)" ${BADGE} \
94
${DRAFT} "${EXTRA}" \
95
"--classname=py${PYTHON_VERSION}_${CONTAINER}"
96
# LC_ALL=C is to work around junit-xml ASCII only bug
0 commit comments