about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCaleb Zulawski <caleb.zulawski@gmail.com>2023-07-22 09:35:18 -0400
committerCaleb Zulawski <caleb.zulawski@gmail.com>2023-07-22 09:35:18 -0400
commit1948b02e40293c56e9498a5e553d29d48fcc3836 (patch)
tree7207699eb8a22221b7cf67e584a7f242d3067221
parent415b50f6715c7967fc83c5a05dd6917a344f0b5f (diff)
downloadrust-1948b02e40293c56e9498a5e553d29d48fcc3836.tar.gz
rust-1948b02e40293c56e9498a5e553d29d48fcc3836.zip
Don't use native cpu in cross
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 73d38b41a38..d36cad638af 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -186,9 +186,9 @@ jobs:
           # - mips64-unknown-linux-gnuabi64
         target_feature: [default]
         include:
-          - { target: powerpc64-unknown-linux-gnu, target_feature: "native" }
-          - { target: powerpc64le-unknown-linux-gnu, target_feature: "native" }
-          - { target: riscv64gc-unknown-linux-gnu, target_feature: "native" }
+          - { target: powerpc64-unknown-linux-gnu, target_feature: "+vsx" }
+          - { target: powerpc64le-unknown-linux-gnu, target_feature: "+vsx" }
+          - { target: riscv64gc-unknown-linux-gnu, target_feature: "+zvl128b" }
 
     steps:
       - uses: actions/checkout@v2