Skip to content

Commit

Permalink
add julia
Browse files Browse the repository at this point in the history
  • Loading branch information
tgymnich committed Feb 8, 2023
1 parent 173b77f commit 63f2c74
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion builder/install-compilers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

set -x

# clang

if /app/infra/bin/ce_install check-installed compilers/c++/clang 7.1.0 | grep "not installed"; then
/app/infra/bin/ce_install install compilers/c++/clang 7.1.0
fi
Expand Down Expand Up @@ -38,7 +40,14 @@ if /app/infra/bin/ce_install check-installed compilers/c++/clang 15.0.0 | grep "
/app/infra/bin/ce_install install compilers/c++/clang 15.0.0
fi

# cuda

if /app/infra/bin/ce_install check-installed compilers/cuda 11.0.2 | grep "not installed"; then
/app/infra/bin/ce_install install compilers/cuda 11.0.2
fi
fi

# julia

if /app/infra/bin/ce_install check-installed compilers/julia 1.8.5 | grep "not installed"; then
/app/infra/bin/ce_install install compilers/julia 1.8.5
fi

0 comments on commit 63f2c74

Please sign in to comment.