We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d6dadfe + 2bb4cde commit 2e26124Copy full SHA for 2e26124
1 file changed
Jenkinsfile
@@ -99,13 +99,10 @@ node(linux) {
99
100
101
stage 'Lint and test container'
102
-parallel(
103
- lint: {
+// TODO: re-parallelize these tasks when race condition is fixed.
104
node(linux) {
105
sh "docker run --rm ${test_image} lint"
106
}
107
- },
108
- test: {
109
110
withCredentials([[$class: 'StringBinding',
111
credentialsId: '995d99a7-466b-4beb-bf75-f3ba91cbbc18',
@@ -122,8 +119,6 @@ parallel(
122
119
sh "docker run -e CODECOV_TOKEN=\${CODECOV_TOKEN} --rm ${test_image} sh -c 'test-cover.sh && ${codecov}'"
123
120
124
121
125
- }
126
-)
127
128
stage 'Build and Upload Artifacts'
129
0 commit comments