Skip to content

Commit 490a708

Browse files
test5
1 parent 8409566 commit 490a708

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/scripts/ppc64le-ci/self-hosted-builder/actions-runner.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ USER runner
9696
# Set working directory
9797
WORKDIR /opt/runner
9898

99-
COPY --chown=runner:runner manywheel-ppc64le.tar /opt/runner/manywheel-ppc64le.tar
99+
COPY --chown=runner:runner ubi-ppc64le.tar /opt/runner/ubi-ppc64le.tar
100100

101101
# Define entry point and command
102102
ENTRYPOINT ["/usr/bin/entrypoint"]

.github/scripts/ppc64le-ci/self-hosted-builder/fs/usr/bin/actions-runner

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ set -e -u
44

55
trap cleanup EXIT
66

7+
# first import docker image
8+
if [ -f ./ubi-s390x.tar ] ; then
9+
docker image load --input ubi-ppc64le.tar
10+
docker image tag docker.io/pytorch/ubippc64le-builder:cpu-ppc64le docker.io/pytorch/ubippc64le-builder:cpu-ppc64le-main
11+
rm -f ubi-ppc64le.tar
12+
fi
13+
714
token_file=registration-token.json
815

916
# Function to clean up and unregister the runner

.github/workflows/ppc64le.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
with:
2020
build-environment: linux-ppc64le-binary-manywheel-ubi9
21-
docker-image-name: localhost/pytorch-ppc64le:ubi9.3
21+
docker-image-name: docker.io/pytorch/ubippc64le-builder:cpu-ppc64le-main
2222
runner: linux.ppc64le
2323

2424

0 commit comments

Comments
 (0)