Skip to content

Commit 84589b1

Browse files
authored
Update runtests.jl
1 parent 4e676cf commit 84589b1

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

test/runtests.jl

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@ const is_slow_ci = is_ci && Sys.ARCH == :aarch64
1818
const is_julia_1_6 = VERSION.major == 1 && VERSION.minor == 6
1919
const 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+
2129
if is_julia_1_6
2230
@warn "This is Julia 1.6. Some tests will be skipped or modified." VERSION
2331
end
@@ -26,10 +34,6 @@ if is_julia_1_11
2634
@warn "This is Julia 1.11. Some tests will be skipped or modified." VERSION
2735
end
2836

29-
if is_ci
30-
@show Sys.ARCH
31-
end
32-
3337
function remove_llvmextras(project_file)
3438
proj = TOML.parsefile(project_file)
3539
delete!(proj["deps"], "LLVMExtra_jll")

0 commit comments

Comments
 (0)