From 21a2656a106ae78f743e78aa00041a160a67ae36 Mon Sep 17 00:00:00 2001 From: Arthur Meyre Date: Tue, 21 Sep 2021 11:09:26 +0200 Subject: [PATCH] fix(release): avoid failure with non TTY input device --- .github/workflows/continuous-integration.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index 4ff6ccb39..3bcd5111f 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -362,7 +362,7 @@ jobs: if: ${{ success() && !cancelled() }} run: | echo "Running sanity check for ${RELEASE_IMG_TAG}" - docker run --rm -it --env LD_PRELOAD=/compiler/build/lib/Runtime/libZamalangRuntime.so \ + docker run --rm --env LD_PRELOAD=/compiler/build/lib/Runtime/libZamalangRuntime.so \ -v "$(pwd)"/docker/release_resources:/data \ "${RELEASE_IMG_TAG}" /bin/bash -c "python ./sanity_check.py" docker push "${RELEASE_IMG_TAG}"