From acccf7e953bd997d6278f6f0a9fca97d772952cb Mon Sep 17 00:00:00 2001 From: William Hobbs Date: Fri, 12 Jan 2024 10:27:41 -0800 Subject: [PATCH] gitlab: update corona specification to use pdebug Problem: Corona runners will timeout more frequently when they default to pbatch, because that queue is more heavily utilized. Since our jobs run at night, they can run in the pdebug queue. Solution: add pdebug to the scheduler options for corona. Move some options around in other machines for consistency and readability. --- .gitlab-ci.yml | 2 +- .gitlab/machines.gitlab-ci.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8dd8ba4..75af87d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -78,5 +78,5 @@ corona-mpi-test: - .test-core-mpi - .corona variables: - LLNL_FLUX_SCHEDULER_PARAMETERS: "-N2" + LLNL_FLUX_SCHEDULER_PARAMETERS: "-N 2 -q pdebug" stage: test diff --git a/.gitlab/machines.gitlab-ci.yml b/.gitlab/machines.gitlab-ci.yml index f7e459f..c50d834 100644 --- a/.gitlab/machines.gitlab-ci.yml +++ b/.gitlab/machines.gitlab-ci.yml @@ -15,7 +15,7 @@ - batch variables: HWLOC_COMPONENTS: "x86" - LLNL_FLUX_SCHEDULER_PARAMETERS: "--exclusive -N 1 --setattr=system.bank=lc" + LLNL_FLUX_SCHEDULER_PARAMETERS: "--exclusive -N 1 -q pdebug --setattr=bank=lc" .poodle: tags: @@ -23,7 +23,7 @@ - batch variables: HWLOC_COMPONENTS: "x86" - LLNL_SLURM_SCHEDULER_PARAMETERS: "--exclusive -p pdebug -N 1" + LLNL_SLURM_SCHEDULER_PARAMETERS: "--exclusive -N 1 -p pdebug" .tioga: tags: @@ -31,7 +31,7 @@ - batch variables: HWLOC_COMPONENTS: "x86" - LLNL_FLUX_SCHEDULER_PARAMETERS: "--exclusive -N 1" + LLNL_FLUX_SCHEDULER_PARAMETERS: "--exclusive -N 1 -q pdebug" .quartz: tags: @@ -39,4 +39,4 @@ - batch variables: HWLOC_COMPONENTS: "x86" - LLNL_SLURM_SCHEDULER_PARAMETERS: "-p pdebug -N 1" + LLNL_SLURM_SCHEDULER_PARAMETERS: "-N 1 -p pdebug"