1 parent bc58824 commit bde27c6Copy full SHA for bde27c6
2 files changed
.github/workflows/build-image.yml
@@ -117,4 +117,4 @@ jobs:
117
- name: Run smoke tests
118
run: |
119
docker pull ${{ steps.info.outputs.tag }}
120
- docker run --rm ${{ steps.info.outputs.tag }} bash < images/${{ matrix.image }}/test-smoke.sh
+ docker run --rm -i ${{ steps.info.outputs.tag }} bash < images/${{ matrix.image }}/test-smoke.sh
.github/workflows/test-image.yml
@@ -82,4 +82,4 @@ jobs:
82
fi
83
IMAGE="${{ env.REGISTRY }}/${{ env.ORG }}/${{ matrix.image }}:${TAG}"
84
docker pull "$IMAGE"
85
- docker run --rm "$IMAGE" bash < images/${{ matrix.image }}/test-smoke.sh
+ docker run --rm -i "$IMAGE" bash < images/${{ matrix.image }}/test-smoke.sh
0 commit comments