Skip to content

Commit

Permalink
ci: Pin nightly toolchain for aarch64_be test
Browse files Browse the repository at this point in the history
rust-lang/rust#132714 bumped memchr without
considering aarch64_be is not supported in memchr:
BurntSushi/memchr#162
  • Loading branch information
taiki-e committed Nov 9, 2024
1 parent 79dcc27 commit 2af216d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ jobs:
- rust: nightly
target: aarch64-unknown-linux-gnu
flags: -Z codegen-backend=cranelift
- rust: nightly
- rust: nightly-2024-11-07 # TODO: https://github.com/BurntSushi/memchr/pull/162
target: aarch64_be-unknown-linux-gnu
- rust: stable
target: aarch64-unknown-linux-musl
Expand Down
8 changes: 5 additions & 3 deletions tools/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,15 @@ default_targets=(
# FEAT_LSE & FEAT_LSE2
aarch64-apple-darwin
# big endian
aarch64_be-unknown-linux-gnu
aarch64_be-unknown-netbsd
# TODO: https://github.com/BurntSushi/memchr/pull/162
# aarch64_be-unknown-linux-gnu
# aarch64_be-unknown-netbsd
# ILP32 ABI
aarch64-unknown-linux-gnu_ilp32
arm64_32-apple-watchos
# ILP32 ABI big endian
aarch64_be-unknown-linux-gnu_ilp32
# TODO: https://github.com/BurntSushi/memchr/pull/162
# aarch64_be-unknown-linux-gnu_ilp32

# arm64ec
# rustc --print target-list | grep -E '^arm64ec'
Expand Down

0 comments on commit 2af216d

Please sign in to comment.