Skip to content

Commit 56907e3

Browse files
updated image creation logic
1 parent 912f458 commit 56907e3

File tree

2 files changed

+32
-28
lines changed

2 files changed

+32
-28
lines changed

.github/workflows/_linux-build.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -132,14 +132,18 @@ jobs:
132132
role-session-name: gha-linux-build
133133
aws-region: us-east-1
134134

135-
- name: Download Docker image artifact
136-
uses: actions/download-artifact@v4
137-
with:
138-
name: manylinuxppc64le-builder-image
135+
# - name: Download Docker image artifact
136+
# uses: actions/download-artifact@v4
137+
# with:
138+
# name: manylinuxppc64le-builder-image
139139

140-
- name: Load Docker image
140+
# - name: Load Docker image
141+
# run: |
142+
# docker load -i manylinuxppc64le-builder.tar
143+
144+
- name: Build Docker image for ppc64le
141145
run: |
142-
docker load -i manylinuxppc64le-builder.tar
146+
docker build -f .ci/docker/manywheel/Dockerfile_ppc64le -t manylinuxppc64le-builder .
143147
144148
- name: Calculate docker image
145149
id: calculate-docker-image

.github/workflows/ppc64le.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -11,37 +11,37 @@ concurrency:
1111
cancel-in-progress: true
1212

1313
jobs:
14-
linux-ppc64le-docker-image-build:
15-
name: Build docker image for ppc64le
16-
runs-on: ubuntu-24.04-ppc64le-p10
17-
steps:
18-
- name: Checkout repository
19-
uses: actions/checkout@v3
14+
# linux-ppc64le-docker-image-build:
15+
# name: Build docker image for ppc64le
16+
# runs-on: ubuntu-24.04-ppc64le-p10
17+
# steps:
18+
# - name: Checkout repository
19+
# uses: actions/checkout@v3
2020

21-
- name: Set up Docker Buildx
22-
uses: docker/setup-buildx-action@v2
21+
# - name: Set up Docker Buildx
22+
# uses: docker/setup-buildx-action@v2
2323

24-
- name: Set up Docker Buildx
25-
uses: docker/setup-buildx-action@v2
26-
- name: Build Docker image for ppc64le
27-
run: |
28-
docker build -f .ci/docker/manywheel/Dockerfile_ppc64le -t manylinuxppc64le-builder .
24+
# - name: Set up Docker Buildx
25+
# uses: docker/setup-buildx-action@v2
26+
# - name: Build Docker image for ppc64le
27+
# run: |
28+
# docker build -f .ci/docker/manywheel/Dockerfile_ppc64le -t manylinuxppc64le-builder .
2929

30-
- name: Save Docker image to tarball
31-
run: |
32-
docker save manylinuxppc64le-builder -o manylinuxppc64le-builder.tar
30+
# - name: Save Docker image to tarball
31+
# run: |
32+
# docker save manylinuxppc64le-builder -o manylinuxppc64le-builder.tar
3333

34-
- name: Upload image artifact
35-
uses: actions/upload-artifact@v4
36-
with:
37-
name: manylinuxppc64le-builder-image
38-
path: manylinuxppc64le-builder.tar
34+
# - name: Upload image artifact
35+
# uses: actions/upload-artifact@v4
36+
# with:
37+
# name: manylinuxppc64le-builder-image
38+
# path: manylinuxppc64le-builder.tar
3939

4040
linux-manylinux-2_28-py3-cpu-ppc64le-build:
4141

4242
name: linux-manylinux-2_28-py3-cpu-ppc64le-build
4343
uses: ./.github/workflows/_linux-build.yml
44-
needs: linux-ppc64le-docker-image-build
44+
# needs: linux-ppc64le-docker-image-build
4545
with:
4646
build-environment: linux-ppc64le-binary-manywheel
4747
docker-image-name: manylinuxppc64le-builder

0 commit comments

Comments
 (0)