File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,14 @@ const is_slow_ci = is_ci && Sys.ARCH == :aarch64
1818const is_julia_1_6 = VERSION . major == 1 && VERSION . minor == 6
1919const is_julia_1_11 = VERSION . major == 1 && VERSION . minor == 11
2020
21+ if is_ci
22+ @show Sys. ARCH
23+ end
24+
25+ if is_slow_ci
26+ @warn " This is " slow CI " (`is_ci && Sys.ARCH == :aarch64`). Some tests will be skipped or modified." Sys. ARCH
27+ end
28+
2129if is_julia_1_6
2230 @warn " This is Julia 1.6. Some tests will be skipped or modified." VERSION
2331end
@@ -26,10 +34,6 @@ if is_julia_1_11
2634 @warn " This is Julia 1.11. Some tests will be skipped or modified." VERSION
2735end
2836
29- if is_ci
30- @show Sys. ARCH
31- end
32-
3337function remove_llvmextras (project_file)
3438 proj = TOML. parsefile (project_file)
3539 delete! (proj[" deps" ], " LLVMExtra_jll" )
You can’t perform that action at this time.
0 commit comments