-
Notifications
You must be signed in to change notification settings - Fork 219
support depends_on "load" statements in generated modules via --module-depends-on and module_depends_on easyconfig parameter #2391
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
Merged
boegel
merged 12 commits into
easybuilders:develop
from
ComputeCanada:module_depends_on
Mar 31, 2018
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
6f21c8f
Support Lmod 7.6+ depends_on via recursive-module-unload-depends-on.
bartoldeman fcb0e21
Bump Lmod version used for Travis testing from 7.4 to 7.6.
bartoldeman 800bd90
Use depends_on (syntax: "depends-on modname") TCL modulefiles too.
bartoldeman 63bda19
Centralize Lmod version checks to modules_tool().has_depends_on/bump.
bartoldeman acf8cd1
Fix regular expression for module dependencies to match depends_on.
bartoldeman 2d9166a
Merge remote-tracking branch 'github_hpcugent/develop' into module_de…
bartoldeman 8e02128
Rename has_depends_on to supports_depends_on and init properly.
bartoldeman 5e29702
Rename recursive-module-unload-depends-on to module-use-depends-on.
bartoldeman 279e4a3
Fix string typo in module_use_depends_on help.
bartoldeman 631810d
Replace *use_depends_on by *depends_on as suggested by @boegel.
bartoldeman 4b1c65e
Undo wrapping for clarity.
bartoldeman 84094e8
Test if module-depends-on gives an error with unsupported module tools.
bartoldeman 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
make this
elif?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.
No, it really needs to be
else:because of the commonload_statement =statement at the bottom.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.
OK, I overlooked that indeed, thanks or clarifying