diff options
| author | Jack O'Connor <[email protected]> | 2023-09-10 14:18:55 -0700 |
|---|---|---|
| committer | Jack O'Connor <[email protected]> | 2023-09-10 14:18:55 -0700 |
| commit | f22d66b307504aec7a31a91d9bcdb3cd099365a4 (patch) | |
| tree | 05dee777935d8b9a70ef6427afda098226d6fe21 | |
| parent | cd4b3140cf97304b4241c12e3fad95f15cf665b1 (diff) | |
stop using MIPS for big-endian testing
https://twitter.com/burntsushi5/status/1695483429997945092
https://github.com/rust-lang/compiler-team/issues/648
| -rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a1b6123..f179ada 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -177,7 +177,9 @@ jobs: - i686-unknown-linux-musl - armv7-unknown-linux-gnueabihf - aarch64-unknown-linux-gnu - - mips-unknown-linux-gnu + # Big-endian targets. See https://twitter.com/burntsushi5/status/1695483429997945092. + - powerpc64-unknown-linux-gnu + - s390x-unknown-linux-gnu steps: - uses: actions/checkout@v3 |
