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 bd6c687 commit 3048318Copy full SHA for 3048318
wercker.yml
@@ -158,13 +158,18 @@ integration-test:
158
echo "$IMAGE_NAME_OPERATOR:$IMAGE_TAG_OPERATOR"
159
160
# integration tests
161
- $WERCKER_SOURCE_DIR/src/integration-tests/bash/run.sh
162
-
+ sh $WERCKER_SOURCE_DIR/src/integration-tests/bash/run.sh
+ local exit_code=$?
163
+
164
# clean up
165
yum clean all
166
167
# store the artifacts so we can download them easily
168
tar czvf ${WERCKER_REPORT_ARTIFACTS_DIR}/integration-test-data.tar.gz /pipeline/output/*
169
170
+ if [ ${exit_code} -ne 0 ] ; then
171
+ exit ${exit_code}
172
+ fi
173
174
# This pipeline runs quality checks
175
quality:
0 commit comments