Skip to content
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
82fe73e
{2023.06}[foss/2021a] Qt5 V5.15.2
Jun 27, 2023
f2b4ede
added --from-pr option
Jun 27, 2023
237a16f
added from-pr option
Jun 27, 2023
df8a57a
merging local with remote
Jun 30, 2023
7b9f662
adding the option:ignore-test-failure
Jun 30, 2023
5436f8b
removed the option:ignore-test-failure
Jun 30, 2023
386d7f8
Merge branch '2023.06' of https://github.com/EESSI/software-layer int…
Jul 4, 2023
2a32626
added a hook to set check_qtwebengine to False
Jul 4, 2023
a86d0e6
renamed the function in the hook to Qt5_check_qtwebengine_disable
Jul 4, 2023
c46d016
renamed the function in the hook to Qt5_check_qtwebengine_disable 1
Jul 4, 2023
9262538
editted the hook
Jul 4, 2023
c1c8e8e
editted the hook
Jul 4, 2023
22245d4
refactor parse hook for Qt5 to disable check_qtwebengine
boegel Jul 5, 2023
913ff53
raise error if Qt5-specific hook is triggered for something else than…
boegel Jul 5, 2023
b94e7c1
Merge pull request #13 from boegel/eessi-2023.06-Qt5/5.15.2
TopRichard Jul 5, 2023
ee36189
Merge branch '2023.06' of https://github.com/EESSI/software-layer int…
Jul 5, 2023
cdc2d78
Merge branch 'eessi-2023.06-Qt5/5.15.2' of gh-eessi:TopRichard/bot-so…
Jul 5, 2023
ca888ad
added some explanation in the eessi-2021a yml file
Jul 5, 2023
a624cef
matching indent
Jul 5, 2023
6b77751
Merge branch '2023.06' into eessi-2023.06-Qt5/5.15.2
boegel Jul 5, 2023
6e524c9
Merge branch 'eessi-2023.06-Qt5/5.15.2' of github.com:TopRichard/bot-…
boegel Jul 5, 2023
ca7e368
retain alphabetical order in parse hooks
boegel Jul 5, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions eb_hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,16 @@ def parse_hook(ec, *args, **kwargs):
# determine path to Prefix installation in compat layer via $EPREFIX
eprefix = get_eessi_envvar('EPREFIX')

#Disable Qt5/5.15.2 qtwebengine in Sanity-check
Qt5_check_qtwebengine_disable(ec, eprefix)

if ec.name in PARSE_HOOKS:
PARSE_HOOKS[ec.name](ec, eprefix)

def Qt5_check_qtwebengine_disable(ec, eprefix):
if ec.name == 'Qt5'and ec.version == '5.15.2':
ec['check_qtwebengine'] = False
print_msg("The value of check_qtwebengine has been set to %s", ec['check_qtwebengine'])

def pre_prepare_hook(self, *args, **kwargs):
"""Main pre-prepare hook: trigger custom functions."""
Expand Down
3 changes: 3 additions & 0 deletions eessi-2023.06-eb-4.7.2-2021a.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ easyconfigs:
- libjpeg-turbo-2.0.6-GCCcore-10.3.0.eb
- QuantumESPRESSO-6.7-foss-2021a.eb
- GROMACS-2021.3-foss-2021a.eb
- Qt5-5.15.2-GCCcore-10.3.0.eb:
options:
from-pr: 18087