diff options
| author | Caleb Zulawski <caleb.zulawski@gmail.com> | 2023-07-22 10:24:32 -0400 |
|---|---|---|
| committer | Caleb Zulawski <caleb.zulawski@gmail.com> | 2023-07-22 10:24:32 -0400 |
| commit | 5c6405ba8956d5a0252789b7152fb0c5b684b67f (patch) | |
| tree | 59674e295f42258da39d4282a879edfc3343b052 | |
| parent | 94f20143a9d6f69f5472565c6694d05277112ad3 (diff) | |
| download | rust-5c6405ba8956d5a0252789b7152fb0c5b684b67f.tar.gz rust-5c6405ba8956d5a0252789b7152fb0c5b684b67f.zip | |
Disable riscv v extension
| -rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 89c355e1190..c0429a1332c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -188,7 +188,8 @@ jobs: include: - { target: powerpc64-unknown-linux-gnu, target_feature: "+vsx" } - { target: powerpc64le-unknown-linux-gnu, target_feature: "+vsx" } - - { target: riscv64gc-unknown-linux-gnu, target_feature: "+v,+zvl128b" } + # We should test this, but cross currently can't run it + # - { target: riscv64gc-unknown-linux-gnu, target_feature: "+v,+zvl128b" } steps: - uses: actions/checkout@v2 |
