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