Skip to content

Commit c27f9c7

Browse files
committed
wip
1 parent dcc1f74 commit c27f9c7

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.werft/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ async function build(context, version) {
180180

181181
if (withIntegrationTests) {
182182
exec(`git config --global user.name "${context.Owner}"`);
183-
exec(`werft run --follow-with-prefix=int-tests --remote-job-path .werft/run-integration-tests.yaml -a version=${deploymentConfig.version} -a namespace=${deploymentConfig.namespace} github`);
183+
exec(`werft run --follow-with-prefix="int-tests: " --remote-job-path .werft/run-integration-tests.yaml -a version=${deploymentConfig.version} -a namespace=${deploymentConfig.namespace} github`);
184184
}
185185
}
186186

.werft/run-integration-tests.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,8 @@ pod:
2121
- -c
2222
- |
2323
apk add moreutils
24+
2425
/entrypoint.sh -kubeconfig=in-cluster -namespace={{ .Annotations.namespace }} 2>&1 | ts "[int-tests] "
25-
echo "[int-tests|DONE]"
26+
RC=$?
27+
echo "[int-tests|DONE]"
28+
exit $RC

0 commit comments

Comments
 (0)