Skip to content

Commit

Permalink
Merge pull request #592 from tgross35/lse-gating
Browse files Browse the repository at this point in the history
Add a fix for aarch64-darwin and enable it in CI
  • Loading branch information
Amanieu authored Apr 17, 2024
2 parents 7240849 + 1e1376e commit 2978bdd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ jobs:
fail-fast: false
matrix:
include:
- target: aarch64-apple-darwin
os: macos-14
rust: nightly
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
rust: nightly
Expand Down Expand Up @@ -81,6 +84,8 @@ jobs:
os: windows-latest
rust: nightly-x86_64-gnu
steps:
- name: Print runner information
run: uname -a
- uses: actions/checkout@v4
with:
submodules: true
Expand Down
5 changes: 1 addition & 4 deletions testcrate/tests/lse.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
#![feature(decl_macro)] // so we can use pub(super)
#![cfg(all(
any(target_arch = "aarch64", target_arch = "arm64ec"),
not(feature = "no-asm")
))]
#![cfg(all(target_arch = "aarch64", target_os = "linux", not(feature = "no-asm")))]

/// Translate a byte size to a Rust type.
macro int_ty {
Expand Down

0 comments on commit 2978bdd

Please sign in to comment.