@@ -132,7 +132,7 @@ jobs:
132132 } >> "${GITHUB_ENV} }}"
133133
134134 - name : " [FB EMPLOYEES] Enable SSH (Click me for login details)"
135- if : inputs.build_environment != 'linux-s390x-binary-manywheel'
135+ if : inputs.build_environment != 'linux-s390x-binary-manywheel' && inputs.build_environment != 'linux-ppc64le-binary-manywheel'
136136 uses : pytorch/test-infra/.github/actions/setup-ssh@main
137137 continue-on-error : true
138138 with :
@@ -142,14 +142,14 @@ jobs:
142142 - name : Checkout PyTorch
143143 uses : pytorch/pytorch/.github/actions/checkout-pytorch@main
144144 with :
145- no-sudo : ${{ inputs.build_environment == 'linux-aarch64-binary-manywheel' || inputs.build_environment == 'linux-s390x-binary-manywheel' }}
145+ no-sudo : ${{ inputs.build_environment == 'linux-aarch64-binary-manywheel' || inputs.build_environment == 'linux-s390x-binary-manywheel' || inputs.build_environment != 'linux-ppc64le-binary-manywheel' }}
146146
147147 - name : Setup Linux
148- if : inputs.build_environment != 'linux-s390x-binary-manywheel'
148+ if : inputs.build_environment != 'linux-s390x-binary-manywheel' && inputs.build_environment != 'linux-ppc64le-binary-manywheel'
149149 uses : ./.github/actions/setup-linux
150150
151151 - name : Chown workspace
152- if : inputs.build_environment != 'linux-s390x-binary-manywheel'
152+ if : inputs.build_environment != 'linux-s390x-binary-manywheel' && inputs.build_environment != 'linux-ppc64le-binary-manywheel'
153153 uses : ./.github/actions/chown-workspace
154154 with :
155155 ALPINE_IMAGE : ${{ inputs.ALPINE_IMAGE }}
@@ -198,7 +198,7 @@ jobs:
198198 if : ${{ inputs.GPU_ARCH_TYPE == 'cuda' && steps.filter.outputs.is-test-matrix-empty == 'False' }}
199199
200200 - name : Pull Docker image
201- if : ${{ steps.filter.outputs.is-test-matrix-empty == 'False' && inputs.build_environment != 'linux-s390x-binary-manywheel' }}
201+ if : ${{ steps.filter.outputs.is-test-matrix-empty == 'False' && inputs.build_environment != 'linux-s390x-binary-manywheel' && inputs.build_environment != 'linux-ppc64le-binary-manywheel' }}
202202 uses : pytorch/test-infra/.github/actions/pull-docker-image@main
203203 with :
204204 docker-image : ${{ inputs.DOCKER_IMAGE }}
@@ -208,11 +208,11 @@ jobs:
208208 uses : ./pytorch/.github/actions/test-pytorch-binary
209209
210210 - name : Teardown Linux
211- if : always() && inputs.build_environment != 'linux-s390x-binary-manywheel'
211+ if : always() && inputs.build_environment != 'linux-s390x-binary-manywheel' && inputs.build_environment != 'linux-ppc64le-binary-manywheel'
212212 uses : pytorch/test-infra/.github/actions/teardown-linux@main
213213
214214 - name : Chown workspace
215- if : always() && inputs.build_environment != 'linux-s390x-binary-manywheel'
215+ if : always() && inputs.build_environment != 'linux-s390x-binary-manywheel' && inputs.build_environment != 'linux-ppc64le-binary-manywheel'
216216 uses : ./pytorch/.github/actions/chown-workspace
217217 with :
218218 ALPINE_IMAGE : ${{ inputs.ALPINE_IMAGE }}
0 commit comments