-
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
tweak scripts to support building for dev.eessi.io
repository
#771
Merged
boegel
merged 27 commits into
EESSI:2023.06-software.eessi.io
from
Neves-P:feature/dev.eessi.io
Oct 12, 2024
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
4437706
Relax grep for finding easystack files
Neves-P c30dca9
Use $EESSI_COMPAT_LAYER_DIR_OVERRIDE
Neves-P cf676de
Add log message for compat layer override
Neves-P 2fe88f1
Add debug output
Neves-P 6a3e549
Fix check if compat layer override is set
Neves-P 8b25829
Also use software.eessi.io in the container
Neves-P 1b74975
Fix syntax
Neves-P b34de36
Allow for overriden compat layer in Gentoo Prefix checks
Neves-P 7b9cc97
Make EPREFIX=$EESSI_COMPAT_LAYER_DIR
Neves-P 125b849
Revert override in compat layer for EPREFIX
Neves-P 0691dc8
Pass $EESSI_COMPAT_LAYER_DIR to container
Neves-P 7dff938
Make software.eessi.io modules available when building for dev.eessi.io
Neves-P e709e6f
Use $base_dir to be able to run from another working dir
Neves-P 4f01309
Relax regular expression searching for easystacks
Neves-P bded640
Use $topdir to run bot/build.sh from another directory
Neves-P 0fad00c
Relax regex for looking for easystacks
Neves-P 4f8f4fb
Don't run install_scripts.sh in dev.eessi.io
Neves-P 0c136fc
Working directory is one level up
Neves-P ceaf892
Revert topdir in job_cfg_file override
Neves-P f466534
Fix silly path error
Neves-P d3b8d5d
When using dev.eessi.io easystack files and removing installations ar…
Neves-P 247a23d
Pass down change in robot paths to compat layer
Neves-P 8838129
Merge branch 'EESSI:2023.06-software.eessi.io' into feature/dev.eessi.io
Neves-P 1afc599
Guard against `$EESSI_COMPAT_LAYER` being undefined
Neves-P 211840f
`$topdir` -> `$software_layer_dir`
Neves-P 6cd9917
Let ${EASYBUILD_ROBOT_PATHS} be defined earlier
Neves-P 47889d3
Fix syntax error
Neves-P File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
base_dir=$(dirname $(realpath $0)) | ||
source ${base_dir}/init/eessi_defaults | ||
./run_in_compat_layer_env.sh ./EESSI-install-software.sh "$@" | ||
$base_dir/run_in_compat_layer_env.sh $base_dir/EESSI-install-software.sh "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Doing this makes sense, but it will cause fallout below where the
install_cuda_host_injections.sh
script is called.OK to ignore for now since it's only relevant when we're building CUDA software in
dev.eessi.io
), but we'll probably need to have a construct like this:and then use
$SCRIPTS_DIR
when callinginstall_cuda_host_injections.sh
& co belowThere 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.
Make this a follow up PR