File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 83
83
fi
84
84
if [[ " $version " = " v1.0" ]] && [[ " $CONTAINER " = " docker" ]] && [ $PYTHON_VERSION -eq 3 ]
85
85
then
86
+ rm -Rf conformance
87
+ git clone http://${jenkins_cwl_conformance} @github.com/common-workflow-language/conformance.git
88
+
89
+ pushd conformance
90
+ git config user.email
" [email protected] "
91
+ git config user.name " CWL Jenkins build bot"
92
+ popd
93
+
86
94
tool_ver=$( cwltool --version | awk ' { print $2 }' )
87
95
badgedir=${PWD} /conformance/cwltool/cwl_${version} /cwltool_${tool_ver}
88
96
mkdir -p ${PWD} /conformance/cwltool/cwl_${version} /
98
106
coverage combine " --rcfile=${COVERAGE_RC} " $( find . -name ' .coverage.*' )
99
107
coverage xml " --rcfile=${COVERAGE_RC} "
100
108
codecov --file coverage.xml
109
+
110
+ if [ -d conformance ]
111
+ then
112
+ pushd conformance
113
+ git add --all
114
+ git diff-index --quiet HEAD || git commit -m " CWL Jenkins Build bot"
115
+ git push http://
${jenkins_cwl_conformance} :
[email protected] /common-workflow-language/conformance.git
116
+ popd
117
+ fi
118
+
101
119
deactivate
102
120
popd
103
121
done
You can’t perform that action at this time.
0 commit comments