Skip to content

Commit 0c5a4dd

Browse files
committed
skip CUDA installation for riscv.eessi.io
1 parent 9c32981 commit 0c5a4dd

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

bot/build.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,10 +173,15 @@ COMMON_ARGS+=("--mode" "run")
173173

174174
# Also expose software.eessi.io when configured for dev.eessi.io
175175
# Need software.eessi.io for the compat layer
176-
if [[ "${REPOSITORY}" == dev.eessi.io ]]; then
176+
if [[ "${REPOSITORY}" == "dev.eessi.io" ]]; then
177177
COMMON_ARGS+=("--repository" "software.eessi.io,access=ro")
178178
fi
179179

180+
# Skip CUDA installation for riscv.eessi.io
181+
if [[ "${REPOSITORY}" == "riscv.eessi.io" ]]; then
182+
INSTALL_SCRIPT_ARGS+=("--skip-cuda-install")
183+
fi
184+
180185
# make sure to use the same parent dir for storing tarballs of tmp
181186
PREVIOUS_TMP_DIR=${PWD}/previous_tmp
182187

0 commit comments

Comments
 (0)