Skip to content
Merged
Changes from all commits
Commits
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
13 changes: 8 additions & 5 deletions cscs-checks/prgenv/environ_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,15 @@ def __init__(self, module_name):
sn.assert_found(f'{envvar_prefix}_VERSION', self.stderr)
])

# These modules should be fixed in later releases
# FIXME: These modules should be fixed in later releases,
# while gcc was fixed in 20.11

cdt = osext.cray_cdt_version()
if (cdt and cdt <= '20.10' and
module_name in ['cray-petsc-complex',
'cray-petsc-complex-64',
'cudatoolkit', 'gcc']):
if ((cdt and cdt <= '20.11' and
module_name in ['cray-petsc-complex',
'cray-petsc-complex-64',
'cudatoolkit']) or
(cdt and cdt < 20.11 and module_name == 'gcc')):
self.valid_systems = []

self.maintainers = ['EK', 'VH']
Expand Down