Skip to content

Commit 45572b6

Browse files
authored
Add continue on error to validation jobs (#1209)
* Add continue on error to validation jobs * test
1 parent 85fc343 commit 45572b6

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

.github/workflows/validate-linux-binaries.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ jobs:
4949
repository: "pytorch/builder"
5050
ref: ${{ inputs.ref || github.ref }}
5151
job-name: ${{ matrix.build_name }}
52+
continue-on-error: true
5253
script: |
5354
set -ex
5455
export ENV_NAME="conda-env-${{ github.run_id }}"
@@ -70,6 +71,7 @@ jobs:
7071
curl ${{ matrix.installation }} -o libtorch.zip
7172
unzip libtorch.zip
7273
else
74+
INSTALLATION=${INSTALLATION/"conda install"/"conda install -y"}
7375
eval $INSTALLATION
7476
python ./test/smoke_test/smoke_test.py
7577
${PWD}/check_binary.sh

.github/workflows/validate-macos-binaries.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ jobs:
5555
repository: "pytorch/builder"
5656
ref: ${{ inputs.ref || github.ref }}
5757
job-name: ${{ matrix.build_name }}
58+
continue-on-error: true
5859
script: |
5960
set -ex
6061
export ENV_NAME="conda-env-${{ github.run_id }}"
@@ -94,6 +95,7 @@ jobs:
9495
repository: "pytorch/builder"
9596
ref: ${{ inputs.ref || github.ref }}
9697
job-name: ${{ matrix.build_name }}
98+
continue-on-error: true
9799
script: |
98100
set -ex
99101
export ENV_NAME="conda-env-${{ github.run_id }}"

.github/workflows/validate-windows-binaries.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ jobs:
4949
repository: "pytorch/builder"
5050
ref: ${{ inputs.ref || github.ref }}
5151
job-name: ${{ matrix.build_name }}
52+
continue-on-error: true
5253
script: |
5354
set -ex
5455
export ENV_NAME="conda-env-${{ github.run_id }}"

0 commit comments

Comments
 (0)