Skip to content

Commit 5a3126d

Browse files
committed
test ppc
1 parent 9b7b22f commit 5a3126d

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

.github/workflows/build.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,25 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
distro: [ 'centos-8', 'debian-11', 'debian-11-arm', 'debian-11-ppc64', 'debian-12-libcxx', 'alpine' ]
16+
distro: [ 'debian-11-ppc64' ]
1717
version: [ '11.9.169.7' ]
1818

1919
steps:
2020
- name: checkout
2121
uses: actions/checkout@v4
2222

23-
- name: build
24-
run: |
25-
docker build --build-arg v8_version=${{ matrix.version }} ${{ matrix.distro }} -t mybuild
23+
- name: Set up QEMU
24+
uses: docker/setup-qemu-action@v3
25+
26+
- name: Set up Docker Buildx
27+
uses: docker/setup-buildx-action@v3
28+
29+
- name: Build and push
30+
uses: docker/build-push-action@v6
31+
with:
32+
platforms: linux/ppc64le
33+
context: ${{ matrix.distro }}
34+
push: false
2635

2736
- name: copy
2837
run: |

debian-11-ppc64/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ RUN gn gen ${target} -vv --fail-on-unused-args \
2828
--args='v8_monolithic=true \
2929
v8_static_library=true \
3030
v8_enable_sandbox=false \
31-
v8_use_snapshot=false \
3231
is_clang=false \
3332
is_asan=false \
3433
use_gold=false \

0 commit comments

Comments
 (0)