From 35268ed4bb94f015bb8e37d93f3cae861e4978e7 Mon Sep 17 00:00:00 2001 From: Caspar van Leeuwen Date: Thu, 8 Feb 2024 17:59:33 +0100 Subject: [PATCH] Remove again, we will add this as part of the software-layer, since it is specific to the CI of the software-layer --- config/software_layer_bot.py | 50 ------------------------------------ 1 file changed, 50 deletions(-) delete mode 100644 config/software_layer_bot.py diff --git a/config/software_layer_bot.py b/config/software_layer_bot.py deleted file mode 100644 index 94db7577..00000000 --- a/config/software_layer_bot.py +++ /dev/null @@ -1,50 +0,0 @@ -# ReFrame configuration file that can be used in GitHub Actions with EESSI - -from eessi.testsuite.common_config import common_logging_config -from eessi.testsuite.constants import * # noqa: F403 - - -site_configuration = { - 'systems': [ - { - 'name': 'Testing in bot Build jobs for EESSI software Layer', - 'descr': 'Software-layer bot', - 'hostnames': ['.*'], - 'modules_system': 'lmod', - 'partitions': [ - { - 'name': 'default', - 'scheduler': 'local', - 'launcher': 'mpirun', - 'environs': ['default'], - 'features': [FEATURES[CPU]], - 'resources': [ - { - 'name': 'memory', - 'options': ['--mem={size}'], - } - ], - 'max_jobs': 1 - } - ] - } - ], - 'environments': [ - { - 'name': 'default', - 'cc': 'cc', - 'cxx': '', - 'ftn': '' - } - ], - 'general': [ - { - 'purge_environment': True, - 'resolve_module_conflicts': False, # avoid loading the module before submitting the job - # Enable automatic detection of CPU architecture - # See https://reframe-hpc.readthedocs.io/en/stable/configure.html#auto-detecting-processor-information - 'remote_detect': True, - } - ], - 'logging': common_logging_config(), -}