File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -54,11 +54,11 @@ jobs:
54
54
rust : stable
55
55
target : i686-unknown-linux-gnu
56
56
- build : aarch64-macos
57
- os : macos-14
57
+ os : macos-latest
58
58
rust : stable
59
59
target : aarch64-apple-darwin
60
60
- build : x86_64-macos
61
- os : macos-13 # x86
61
+ os : macos-latest
62
62
rust : stable
63
63
target : x86_64-apple-darwin
64
64
- build : aarch64-ios
72
72
target : aarch64-apple-ios-sim
73
73
no_run : --no-run
74
74
- build : x86_64-ios-sim
75
- os : macos-13 # x86
75
+ os : macos-latest
76
76
rust : stable
77
77
target : x86_64-apple-ios # Simulator
78
78
no_run : --no-run
82
82
target : aarch64-apple-ios-macabi
83
83
no_run : --no-run # FIXME(madsmtm): Fix running tests
84
84
- build : x86_64-ios-macabi
85
- os : macos-13 # x86
85
+ os : macos-latest
86
86
rust : stable
87
87
target : x86_64-apple-ios-macabi
88
88
no_run : --no-run # FIXME(madsmtm): Fix running tests
Original file line number Diff line number Diff line change @@ -95,7 +95,13 @@ impl TargetInfo<'_> {
95
95
env => env,
96
96
} ;
97
97
let abi = match self . abi {
98
- "sim" => "simulator" ,
98
+ "sim" => {
99
+ if env != "simulator" {
100
+ "simulator"
101
+ } else {
102
+ ""
103
+ }
104
+ }
99
105
"llvm" | "softfloat" | "uwp" | "vec-extabi" => "" ,
100
106
"ilp32" => "_ilp32" ,
101
107
"abi64" => "" ,
You can’t perform that action at this time.
0 commit comments