-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
install_cuda_host_injections: Don't fail if temp dir exists or parent is missing #700
Conversation
… is missing Use `mkdir -p` such that `--temp-dir /tmp/$USER/EESSI` works out of the box. It also avoids failures if the user got "ERROR: Could not create directory /tmp/root/EESSI/temp" and did `mkdir -p /tmp/root/EESSI/temp` manually.
Instance
|
Instance
|
Instance
|
bot: build repo:eessi.io-2023.06-software arch:x86_64/generic |
Updates by the bot instance
|
Updates by the bot instance
|
New job on instance
|
Updates by the bot instance
|
The search query is a regexp not a glob, so add the missing dot. Also add the missing "of CUDA" in the message
bot: build repo:eessi.io-2023.06-software arch:x86_64/generic |
Updates by the bot instance
|
Updates by the bot instance
|
New job on instance
|
New job on instance
|
New job on instance
|
Updates by the bot instance
|
New job on instance
|
New job on instance
|
New job on instance
|
New job on instance
|
New job on instance
|
New job on instance
|
Label |
Label |
1 similar comment
Label |
Hmm, why did this happen three times 🤔 |
@ocaisa We only need to ingest this once, it's in a neutral place |
@boegel My bad, I misread |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
This has been deployed |
Use
mkdir -p
such that--temp-dir /tmp/$USER/EESSI
works out of the box. It also avoids failures if the user got "ERROR: Could not create directory /tmp/root/EESSI/temp" and didmkdir -p /tmp/root/EESSI/temp
manually.