Skip to content

Commit 2978bdd

Browse files
authored
Merge pull request #592 from tgross35/lse-gating
Add a fix for aarch64-darwin and enable it in CI
2 parents 7240849 + 1e1376e commit 2978bdd

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/main.yml

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
include:
12+
- target: aarch64-apple-darwin
13+
os: macos-14
14+
rust: nightly
1215
- target: aarch64-unknown-linux-gnu
1316
os: ubuntu-latest
1417
rust: nightly
@@ -81,6 +84,8 @@ jobs:
8184
os: windows-latest
8285
rust: nightly-x86_64-gnu
8386
steps:
87+
- name: Print runner information
88+
run: uname -a
8489
- uses: actions/checkout@v4
8590
with:
8691
submodules: true

testcrate/tests/lse.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
#![feature(decl_macro)] // so we can use pub(super)
2-
#![cfg(all(
3-
any(target_arch = "aarch64", target_arch = "arm64ec"),
4-
not(feature = "no-asm")
5-
))]
2+
#![cfg(all(target_arch = "aarch64", target_os = "linux", not(feature = "no-asm")))]
63

74
/// Translate a byte size to a Rust type.
85
macro int_ty {

0 commit comments

Comments
 (0)