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 2465963 commit ee53f1cCopy full SHA for ee53f1c
.github/workflows/build.yml
@@ -192,10 +192,10 @@ jobs:
192
run: >
193
if ! kubectl wait --for=condition=complete --all jobs --timeout=30m; then
194
for pod in $(kubectl -n $ns get pod -o name); do
195
- logs=$(kubectl -n $ns logs $pod --all-containers=true)
+ logs=$(kubectl -n $ns logs $pod --all-containers=true);
196
done;
197
- echo "::error::Kubectl timed out with logs:\n $logs"
198
- exit 1
+ echo "::error::Kubectl timed out with logs:\n $logs";
+ exit 1;
199
fi
200
- name: Run maven cucumber reporting
201
run: mvn -f charts/gxf-cucumber-tests/pom.xml verify
0 commit comments