File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 9
9
fail-fast : false
10
10
matrix :
11
11
include :
12
+ - target : aarch64-apple-darwin
13
+ os : macos-14
14
+ rust : nightly
12
15
- target : aarch64-unknown-linux-gnu
13
16
os : ubuntu-latest
14
17
rust : nightly
81
84
os : windows-latest
82
85
rust : nightly-x86_64-gnu
83
86
steps :
87
+ - name : Print runner information
88
+ run : uname -a
84
89
- uses : actions/checkout@v4
85
90
with :
86
91
submodules : true
Original file line number Diff line number Diff line change 1
1
#![ 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" ) ) ) ]
6
3
7
4
/// Translate a byte size to a Rust type.
8
5
macro int_ty {
You can’t perform that action at this time.
0 commit comments