Skip to content

Commit 93a58c6

Browse files
committed
Update
[ghstack-poisoned]
2 parents db6dc2b + c46aa24 commit 93a58c6

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/nightly.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,10 @@ jobs:
5353
upload-artifact: test-report-${{ matrix.flow }}-${{ matrix.suite }}
5454
script: |
5555
set -eux
56-
.ci/scripts/backend-test-linux.sh "${{ matrix.suite }}" "${{ matrix.flow }}" "${RUNNER_ARTIFACT_DIR}"
56+
# Intentionally suppressing exit code for now.
57+
# TODO (gjcomer) Remove this when jobs are stable.
58+
.ci/scripts/backend-test-linux.sh "${{ matrix.suite }}" "${{ matrix.flow }}" "${RUNNER_ARTIFACT_DIR}" || EXIT_CODE=$?
59+
echo "Test run complete with exit code $EXIT_CODE."
5760
5861
backend-test-macos:
5962
uses: pytorch/test-infra/.github/workflows/macos_job.yml@main
@@ -75,4 +78,5 @@ jobs:
7578
# This is needed to get the prebuilt PyTorch wheel from S3
7679
${CONDA_RUN} --no-capture-output pip install awscli==1.37.21
7780
78-
.ci/scripts/backend-test-macos.sh "${{ matrix.suite }}" "${{ matrix.flow }}" "${RUNNER_ARTIFACT_DIR}"
81+
.ci/scripts/backend-test-macos.sh "${{ matrix.suite }}" "${{ matrix.flow }}" "${RUNNER_ARTIFACT_DIR}" || EXIT_CODE=$?
82+
echo "Test run complete with exit code $EXIT_CODE."

0 commit comments

Comments
 (0)