Skip to content

Commit

Permalink
ci: drop mips, add powerpc and s390x
Browse files Browse the repository at this point in the history
The main reason we used mips before was to get test coverage on a big
endian target. Now that mips no longer seems to work[1], I wanted to
add at least one other big endian target. From the tier 2 supported
platforms[2], the only big endian targets I could find were powerpc and
s390x. So we just add both here.

[1]: rust-lang/compiler-team#648
[2]: https://doc.rust-lang.org/nightly/rustc/platform-support.html#tier-2-with-host-tools
  • Loading branch information
BurntSushi committed Aug 26, 2023
1 parent de03399 commit c788378
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,14 @@ jobs:
os: ubuntu-latest
rust: stable
target: i686-unknown-linux-gnu
- build: stable-mips
- build: stable-powerpc64
os: ubuntu-latest
rust: stable
target: mips64-unknown-linux-gnuabi64
target: powerpc64-unknown-linux-gnu
- build: stable-s390x
os: ubuntu-latest
rust: stable
target: s390x-unknown-linux-gnu
- build: beta
os: ubuntu-latest
rust: beta
Expand Down

0 comments on commit c788378

Please sign in to comment.