Skip to content

Commit

Permalink
remove SystemCompiler from CI in favour of SystemCompilerGCC
Browse files Browse the repository at this point in the history
  • Loading branch information
lexming committed Feb 11, 2025
1 parent a553961 commit d7f53d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 0 additions & 1 deletion easybuild/easyblocks/generic/systemcompiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
'GCCcore': 'gcc',
'icc': 'icc',
'ifort': 'ifort',
'systemcompilergcc-py-sw': 'gcc', # used in test suite
}


Expand Down
7 changes: 6 additions & 1 deletion test/easyblocks/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,8 +443,13 @@ def innertest(self):

for easyblock in easyblocks:
eb_fn = os.path.basename(easyblock)
# dynamically define new inner functions that can be added as class methods to ModuleOnlyTest

if eb_fn == 'systemcompiler.py':
# skip SystemCompiler, will be tested through its childs
continue

# dynamically define new inner functions that can be added as class methods to ModuleOnlyTest
if eb_fn == 'systemcompilergcc.py':
# use GCC as name when testing SystemCompiler easyblock
innertest = make_inner_test(easyblock, name='GCC', version='system')
elif eb_fn == 'systemmpi.py':
Expand Down

0 comments on commit d7f53d8

Please sign in to comment.