-
Notifications
You must be signed in to change notification settings - Fork 283
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
update CP2K easyblock w.r.t. running regtest for CP2K v8.1 #2350
update CP2K easyblock w.r.t. running regtest for CP2K v8.1 #2350
Conversation
Test report by @boegelbot Overview of tested easyconfigs (in order)
Build succeeded for 4 out of 4 (4 easyconfigs in total) |
easybuild/easyblocks/c/cp2k.py
Outdated
regtest_cmd = "%s -nosvn -nobuild -config %s" % (regtest_script, cfg_fn) | ||
regtest_cmd = [regtest_script, '-nobuild', '-config', cfg_fn] | ||
if LooseVersion(self.version) < LooseVersion('8.0'): | ||
# -nosvn option was removed in CP2K 8.1 |
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.
it was already removed in 7.1, but just shows a warning there, so should be fine
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.
It was deprecated in 7.1, yeah, but that doesn't cause any actual trouble...
Should I change the version check to < 7.0
?
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.
you could, or you could change the comment to say '-nosvn is not allowed in CP2K 8.1' or something like that.
both are fine to me
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.
fixed in 31f917b
Test report by @boegel Overview of tested easyconfigs (in order)
Build succeeded for 2 out of 2 (2 easyconfigs in total) |
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
Going in, thanks @boegel! |
(created using
eb --new-pr
)