-
Notifications
You must be signed in to change notification settings - Fork 64
Add dev.eessi.io support including project subdirectories #885
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
Changes from 78 commits
8a6cd13
ee6aea9
0e9402b
8e628be
888b874
1af43f1
25e8a5f
3e5e2af
722ca22
1c3f20a
7c9dee8
d5d1522
fb45d7e
a1f11fe
dd9fccd
821455b
a19c79c
afaa94f
2c3e74e
3d9424d
028f935
4f06864
9eca5e4
0e68f18
82d36c7
3248438
d162ef3
4db1083
720d6e9
e126f78
5a7012c
8dd50b0
1bec917
bbde6db
bb06d25
e16e7bb
5b47737
1ecd93b
a4d61d6
35bd8a1
72ba311
b3399f2
9f0b2df
3fc95e1
28c6b7e
39d67eb
a37ae0b
2145b93
145427f
751aa89
5759cd5
cc240d1
2769b6c
1fead90
13b2190
8b4b022
33a9d64
228fe3b
72395ea
b5b9916
00fc025
cb41a85
ab7245a
d9bed4f
2dd7650
5bb1c56
dc95dbd
e5517b6
6c9e295
b71e2f9
9211451
48c61ef
ee2bcb1
e012bd4
367e30b
e17d4f3
2b96be5
2e0bc48
82da386
acb896a
4a8bcee
50937f7
a5c2cf3
d0c0630
9dab897
cd6ca79
7b4eef6
bd44aed
2f8cb06
3f20404
66738b3
5b81fa9
54e4199
7c0db3f
d6d2f1b
dbc0c82
a0f2570
e481b17
f3a45f2
76c19fc
dd52011
ece8127
9d980f9
e98ce2b
16c77b5
38f129c
82d3828
013d942
3758ecd
38b6b07
d0b5df6
74ea9ec
8e3e010
4bb1559
b314d96
5be4ab2
bd78807
00d2e6b
5c3154b
6af5e85
7d02c15
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,17 @@ EESSI_INIT_DIR_PATH=$(dirname $(readlink -f $BASH_SOURCE)) | |
# script takes *_OVERRIDEs into account | ||
source ${EESSI_INIT_DIR_PATH}/eessi_defaults | ||
|
||
export EESSI_PREFIX=$EESSI_CVMFS_REPO/versions/$EESSI_VERSION | ||
# If $EESSI_DEV_PROJECT is defined, then we are building for dev.eessi.io | ||
# and add a subdirectory to $EESSI_PREFIX | ||
if [ -z ${EESSI_DEV_PROJECT} ]; then | ||
export EESSI_PREFIX=$EESSI_CVMFS_REPO/versions/$EESSI_VERSION | ||
else | ||
echo "\$EESSI_DEV_PROJECT: ${EESSI_DEV_PROJECT}; building for dev.eessi.io" | ||
export EESSI_PREFIX=$EESSI_CVMFS_REPO_OVERRIDE/versions/$EESSI_VERSION/$EESSI_DEV_PROJECT | ||
# Set EESSI_PREFIX to the dev project path for EESSI-extend | ||
export EESSI_CVMFS_INSTALL=$EESSI_PREFIX | ||
fi | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ditto here, you could just tweak the definition of There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Agreed, but I think we need to set |
||
|
||
|
||
if [[ $(uname -s) == 'Linux' ]]; then | ||
export EESSI_OS_TYPE='linux' | ||
|
Uh oh!
There was an error while loading. Please reload this page.