Skip to content

Commit b2f962a

Browse files
update selfhost runner logic
1 parent d9f3dd3 commit b2f962a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/_linux-build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,9 @@ jobs:
100100
build:
101101
environment: ${{ github.ref == 'refs/heads/main' && 'scribe-protected' || startsWith(github.ref, 'refs/heads/release/') && 'scribe-protected' || contains(github.event.pull_request.labels.*.name, 'ci-scribe') && 'scribe-pr' || '' }}
102102
# Don't run on forked repos
103-
if: inputs.runner == 'ppc64le'
104-
runs-on: ["self-hosted", "Linux", "ppc64le"]
103+
#if: inputs.runner == 'ppc64le'
104+
#runs-on: ["self-hosted", "Linux", "ppc64le"]
105+
runs-on: ${{ inputs.runner_prefix}}${{ inputs.runner }}
105106

106107
timeout-minutes: 240
107108
outputs:

.github/workflows/ppc64le.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ jobs:
3939
with:
4040
build-environment: linux-ppc64le-binary-manywheel
4141
docker-image-name: pytorch-ppc64le:ubi9.3
42-
runner: ppc64le
42+
runner: 'self-hosted,Linux,ppc64le'

0 commit comments

Comments
 (0)