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 7430542 commit 70b170aCopy full SHA for 70b170a
.github/workflows/build.yml
@@ -199,10 +199,11 @@ jobs:
199
if ! kubectl wait --for=condition=complete --all jobs --timeout=30m; then
200
echo "::error::Kubectl timed out...";
201
kubectl get events --all-namespaces --sort-by='.metadata.creationTimestamp'
202
- kubectl get pods
203
for pod in $(kubectl get pod --field-selector=status.phase==Running -o name); do
+ echo "Logs for $pod:"
204
kubectl logs $pod --all-containers=true
205
done;
206
+ kubectl get pods
207
exit 1;
208
fi
209
- name: Run maven cucumber reporting
0 commit comments