File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 8484 # force using x86_64/generic, to avoid triggering an installation from scratch
8585 sed -i "s@./EESSI-install-software.sh@\"export EESSI_SOFTWARE_SUBDIR_OVERRIDE='x86_64/generic'; ./EESSI-install-software.sh\"@g" install_software_layer.sh
8686 # skip installation of CUDA SDKs, since this is too heavy for CI
87- sed -i "s@./EESSI-install-software.sh@./EESSI-install-software.sh --skip-cuda-install@g" install_software_layer.sh
87+ # sed -i "s@./EESSI-install-software.sh@./EESSI-install-software.sh --skip-cuda-install@g" install_software_layer.sh
8888 ./eessi_container.sh --mode run --verbose /software-layer/install_software_layer.sh
8989
9090 - name : test create_directory_tarballs.sh script
Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ ${TOPDIR}/install_scripts.sh --prefix ${EESSI_PREFIX}
201201# Hardcode this for now, see if it works
202202# TODO: We should make a nice yaml and loop over all CUDA versions in that yaml to figure out what to install
203203# Allow skipping CUDA SDK install in e.g. CI environments
204- if [ ! -z " ${skip_cuda_install} " ] && [ ! " ${skip_cuda_install} " ]; then
204+ if [ -z " ${skip_cuda_install} " ] || [ ! " ${skip_cuda_install} " ]; then
205205 ${EESSI_PREFIX} /scripts/gpu_support/nvidia/install_cuda_host_injections.sh -c 12.1.1 --accept-cuda-eula
206206fi
207207
You can’t perform that action at this time.
0 commit comments