diff --git a/.github/workflows/validate-linux-binaries.yml b/.github/workflows/validate-linux-binaries.yml index f3c1a8264..2e0f0ea21 100644 --- a/.github/workflows/validate-linux-binaries.yml +++ b/.github/workflows/validate-linux-binaries.yml @@ -49,6 +49,7 @@ jobs: repository: "pytorch/builder" ref: ${{ inputs.ref || github.ref }} job-name: ${{ matrix.build_name }} + continue-on-error: true script: | set -ex export ENV_NAME="conda-env-${{ github.run_id }}" @@ -70,6 +71,7 @@ jobs: curl ${{ matrix.installation }} -o libtorch.zip unzip libtorch.zip else + INSTALLATION=${INSTALLATION/"conda install"/"conda install -y"} eval $INSTALLATION python ./test/smoke_test/smoke_test.py ${PWD}/check_binary.sh diff --git a/.github/workflows/validate-macos-binaries.yml b/.github/workflows/validate-macos-binaries.yml index 8cfac3f50..c09e4129d 100644 --- a/.github/workflows/validate-macos-binaries.yml +++ b/.github/workflows/validate-macos-binaries.yml @@ -55,6 +55,7 @@ jobs: repository: "pytorch/builder" ref: ${{ inputs.ref || github.ref }} job-name: ${{ matrix.build_name }} + continue-on-error: true script: | set -ex export ENV_NAME="conda-env-${{ github.run_id }}" @@ -94,6 +95,7 @@ jobs: repository: "pytorch/builder" ref: ${{ inputs.ref || github.ref }} job-name: ${{ matrix.build_name }} + continue-on-error: true script: | set -ex export ENV_NAME="conda-env-${{ github.run_id }}" diff --git a/.github/workflows/validate-windows-binaries.yml b/.github/workflows/validate-windows-binaries.yml index 7ab7bf3b2..210752cef 100644 --- a/.github/workflows/validate-windows-binaries.yml +++ b/.github/workflows/validate-windows-binaries.yml @@ -49,6 +49,7 @@ jobs: repository: "pytorch/builder" ref: ${{ inputs.ref || github.ref }} job-name: ${{ matrix.build_name }} + continue-on-error: true script: | set -ex export ENV_NAME="conda-env-${{ github.run_id }}"