Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit 5fd5ed3

Browse files
author
odacremolbap
committed
more debugging statements
1 parent d90149e commit 5fd5ed3

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/build-and-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
DIST_DIR: /tmp/dist
8989
run: |
9090
IMAGE_TAG=${{ steps.image-tag.outputs.IMAGE_TAG }} make release
91-
echo "IMAGE_TAG=${IMAGE_TAG}"
91+
echo "generated images with tag ${steps.image-tag.outputs.IMAGE_TAG}"
9292
9393
- name: Upload artifact
9494
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')

.github/workflows/e2e-tests.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,18 @@ jobs:
9090
9191
- name: Deploy TriggerMesh
9292
run: |
93-
echo "IMAGE_TAG=${{ github.event.client_payload.image_tag }}"
93+
echo "Image tag being used: ${{ github.event.client_payload.image_tag }}"
9494
sed -i config/500-*.yaml \
9595
-e "s|ko://github.com/triggermesh/triggermesh-event-sources-bundle/cmd/\(.*$\)|gcr.io/triggermesh/event-sources-bundle/\1:${{ github.event.client_payload.image_tag }}|g"
9696
9797
kubectl apply -f config/
9898
99+
- name: Wait for TriggerMesh deployment
100+
run: |
99101
kubectl -n knative-serving wait deployments.app --timeout=5m --for=condition=Available -l app.kubernetes.io/name=knative-serving
100102
kubectl -n knative-eventing wait deployments.app --timeout=5m --for=condition=Available -l app.kubernetes.io/name=knative-eventing
103+
104+
kubectl -n triggermesh get pods -l app.kubernetes.io/part-of=triggermesh
101105
kubectl -n triggermesh wait deployments.app --timeout=5m --for=condition=Available -l app.kubernetes.io/part-of=triggermesh
102106
103107
- name: Install Ginkgo

0 commit comments

Comments
 (0)