Skip to content

Commit

Permalink
Merge pull request #749 from vkarak/ci/no-prodrun-daint
Browse files Browse the repository at this point in the history
[ci] Disable running modified tests on Daint
  • Loading branch information
vkarak committed Apr 10, 2019
2 parents 6106c83 + a9ddf5d commit 39f6d66
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ci-scripts/ci-runner.bash
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,10 @@ else
# Find modified or added user checks
userchecks=( $(git diff origin/master...HEAD --name-only --oneline --no-merges | \
grep -e '^cscs-checks/.*\.py') )
if [[ $(hostname) =~ daint ]]; then
# FIXME: temporarily disable running modified checks on Daint
userchecks=()
fi

if [ ${#userchecks[@]} -ne 0 ]; then
userchecks_path=""
Expand Down
7 changes: 4 additions & 3 deletions config/cscs.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,13 @@ class ReframeSettings:
'modules_system': 'tmod',
'resourcesdir': '/apps/common/UES/reframe/resources',
'partitions': {
# FIXME: temporarily disable PrgEnv-pgi on all partitions
'login': {
'scheduler': 'local',
'modules': [],
'access': [],
'environs': ['PrgEnv-cray', 'PrgEnv-gnu',
'PrgEnv-intel', 'PrgEnv-pgi'],
'PrgEnv-intel'],
'descr': 'Login nodes',
'max_jobs': 4
},
Expand All @@ -76,7 +77,7 @@ class ReframeSettings:
'modules': ['daint-gpu'],
'access': ['--constraint=gpu'],
'environs': ['PrgEnv-cray', 'PrgEnv-gnu',
'PrgEnv-intel', 'PrgEnv-pgi'],
'PrgEnv-intel'],
'descr': 'Hybrid nodes (Haswell/P100)',
'max_jobs': 100,
'resources': {
Expand All @@ -89,7 +90,7 @@ class ReframeSettings:
'modules': ['daint-mc'],
'access': ['--constraint=mc'],
'environs': ['PrgEnv-cray', 'PrgEnv-gnu',
'PrgEnv-intel', 'PrgEnv-pgi'],
'PrgEnv-intel'],
'descr': 'Multicore nodes (Broadwell)',
'max_jobs': 100,
'resources': {
Expand Down

0 comments on commit 39f6d66

Please sign in to comment.