Skip to content
Merged
Show file tree
Hide file tree
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
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