We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c3a1bbb + f50a41b commit 7c0e103Copy full SHA for 7c0e103
buildscripts/incremental/setup_conda_environment.sh
@@ -22,13 +22,11 @@ set +v
22
source activate $CONDA_ENV
23
set -v
24
25
-# Install llvmdev 20
26
-$CONDA_INSTALL numba/label/dev::llvmdev=20
27
-
28
-# Install the compiler toolchain, for osx, bootstrapping needed
29
-# which happens in build.sh
+# Install llvmdev 20 and compiler toolchain for linux
30
if [[ "$(uname)" == "Linux" ]]; then
31
- $CONDA_INSTALL gcc_linux-64 gxx_linux-64
+ $CONDA_INSTALL numba/label/dev::llvmdev=20 gcc_linux-64 gxx_linux-64
+else
+ $CONDA_INSTALL numba/label/dev::llvmdev=20
32
fi
33
34
# Install dependencies for code coverage (codecov.io)
0 commit comments