@@ -11,20 +11,20 @@ set -exuo pipefail
11
11
# container runs on a host that's the same architecture, but a *different*
12
12
# generation of CPU than what the build host was, the precompilation is useless
13
13
# and Julia takes a long long time to start up. This specific multitarget comes
14
- # from https://github.com/JuliaCI/julia-buildkite/blob/70bde73f6cb17d4381b62236fc2d96b1c7acbba7 /utilities/build_envs.sh#L20-L76 ,
14
+ # from https://github.com/JuliaCI/julia-buildkite/blob/9f354745a1f2bf31a5952462aa1ff2d869507cb8 /utilities/build_envs.sh#L20-L82 ,
15
15
# and may need to be updated as new CPU generations come out.
16
16
# If the architecture the container runs on is different,
17
17
# precompilation may still have to be re-done on first startup - but this
18
18
# *should* catch most of the issues. See
19
19
# https://github.com/jupyter/docker-stacks/issues/2015 for more information
20
20
if [ " $( uname -m) " == " x86_64" ]; then
21
- # See https://github.com/JuliaCI/julia-buildkite/blob/70bde73f6cb17d4381b62236fc2d96b1c7acbba7 /utilities/build_envs.sh#L24
21
+ # See https://github.com/JuliaCI/julia-buildkite/blob/9f354745a1f2bf31a5952462aa1ff2d869507cb8 /utilities/build_envs.sh#L23
22
22
# for an explanation of these options
23
- export JULIA_CPU_TARGET=" generic;sandybridge,-xsaveopt,clone_all;haswell,-rdrnd,base(1)"
23
+ export JULIA_CPU_TARGET=" generic;sandybridge,-xsaveopt,clone_all;haswell,-rdrnd,base(1);x86-64-v4,-rdrnd,base(1) "
24
24
elif [ " $( uname -m) " == " aarch64" ]; then
25
- # See https://github.com/JuliaCI/julia-buildkite/blob/70bde73f6cb17d4381b62236fc2d96b1c7acbba7 /utilities/build_envs.sh#L54
25
+ # See https://github.com/JuliaCI/julia-buildkite/blob/9f354745a1f2bf31a5952462aa1ff2d869507cb8 /utilities/build_envs.sh#L56
26
26
# for an explanation of these options
27
- export JULIA_CPU_TARGET=" generic;cortex-a57;thunderx2t99;carmel"
27
+ export JULIA_CPU_TARGET=" generic;cortex-a57;thunderx2t99;carmel,clone_all;apple-m1,base(3);neoverse-512tvb,base(3) "
28
28
fi
29
29
30
30
# Install base Julia packages
0 commit comments