Some checks failed
SCC Test/pipeline/head There was a failure building this commit
15 lines
371 B
Bash
15 lines
371 B
Bash
module load tools/utilities
|
|
module load tools/cmake/3.28
|
|
module load tools/clang/14.0
|
|
module load tools/vscode
|
|
|
|
distro=`/bin/lsb_release -i -s`
|
|
if [ $distro == "CentOS" ]; then
|
|
. /opt/rh/devtoolset-8/enable
|
|
. /opt/rh/rh-python38/enable
|
|
elif [ $distro == "Rocky" ]; then
|
|
. /opt/rh/gcc-toolset-11/enable
|
|
fi
|
|
layout python3
|
|
[ -f .envrc.$USER ] && . .envrc.$USER
|