Skip to content

Commit 6a0bc52

Browse files
committed
Add PowerPC64 to CI
1 parent dbace9d commit 6a0bc52

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/main.yml

+6
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ jobs:
7676
os: ubuntu-latest
7777
- tuple: powerpc-unknown-linux-gnu
7878
os: ubuntu-latest
79+
- tuple: powerpc64-unknown-linux-gnu
80+
os: ubuntu-latest
7981
- tuple: powerpc64le-unknown-linux-gnu
8082
os: ubuntu-latest
8183
# MIPS targets disabled since they are dropped to tier 3.
@@ -161,6 +163,10 @@ jobs:
161163
tuple: powerpc-unknown-linux-gnu
162164
os: ubuntu-latest
163165
disable_assert_instr: true
166+
- target:
167+
tuple: powerpc64-unknown-linux-gnu
168+
os: ubuntu-latest
169+
disable_assert_instr: true
164170
- target:
165171
tuple: powerpc64le-unknown-linux-gnu
166172
os: ubuntu-latest

ci/run.sh

+4
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ cargo_test() {
8282
wasm32*)
8383
cmd="$cmd --nocapture"
8484
;;
85+
# qemu has an erratic behavior on those tests
86+
powerpc64*)
87+
cmd="$cmd --skip test_vec_lde_u16 --skip test_vec_lde_u32"
88+
;;
8589
esac
8690

8791
if [ "$SKIP_TESTS" != "" ]; then

0 commit comments

Comments
 (0)