Skip to content

Commit

Permalink
Merge pull request #1242 from LLNL/task/white238/ci_queue
Browse files Browse the repository at this point in the history
Use new CI queue
  • Loading branch information
white238 committed Dec 13, 2023
2 parents 9a93c36 + a049425 commit 9410ed3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .gitlab/build_lassen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@
.src_build_on_lassen:
stage: build
variables:
ALLOC_COMMAND: "lalloc 1 -W 25 -q pwdev -G wdev -alloc_flags atsdisable"
ALLOC_COMMAND: "lalloc 1 -W 25 -q pci -alloc_flags atsdisable"
extends: [.src_build_script, .on_lassen, .src_workflow]
needs: []

.full_build_on_lassen:
stage: build
variables:
ALLOC_COMMAND: "lalloc 1 -W 45 -q pwdev -G wdev -alloc_flags atsdisable"
ALLOC_COMMAND: "lalloc 1 -W 45 -q pci -alloc_flags atsdisable"
extends: [.full_build_script, .on_lassen, .full_workflow]
needs: []

Expand Down
10 changes: 2 additions & 8 deletions .gitlab/build_quartz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
- shell
- quartz
rules:
- if: '$CI_COMMIT_BRANCH =~ /_qnone/ || $ON_RUBY == "OFF"' #run except if ...
- if: '$CI_COMMIT_BRANCH =~ /_qnone/ || $ON_QUARTZ == "OFF"' #run except if ...
when: never
- if: '$CI_JOB_NAME =~ /quartz_release/'
when: always
Expand All @@ -26,9 +26,7 @@ quartz_allocate:
extends: [.on_quartz, .src_workflow]
stage: allocate
script:
# Use when ellastic ci is on quartz or we go back to ruby
#- salloc --reservation=ci --qos=ci_ruby -N 1 -c 36 -t 60 --no-shell --job-name=${PROJECT_ALLOC_NAME}
- salloc -N 1 -c 36 -t 60 -p pdebug --no-shell --job-name=${PROJECT_ALLOC_NAME}
- salloc -N 1 -c 36 -t 60 --res=ci --no-shell --job-name=${PROJECT_ALLOC_NAME}
needs: []

####
Expand All @@ -48,17 +46,13 @@ quartz_release:
.src_build_on_quartz:
stage: build
variables:
# Use when ellastic ci is on quartz or we go back to ruby
# ALLOC_COMMAND: "srun --reservation=ci --qos=ci_ruby -t 60 -N 1 "
ALLOC_COMMAND: "srun -t 60 -N 1 -p pdebug"
extends: [.src_build_script, .on_quartz, .src_workflow]
needs: [quartz_allocate]

.full_build_on_quartz:
stage: build
variables:
# Use when ellastic ci is on quartz or we go back to ruby
# ALLOC_COMMAND: "srun --reservation=ci --qos=ci_ruby -t 60 -N 1 "
ALLOC_COMMAND: "srun -t 60 -N 1 -p pdebug"
extends: [.full_build_script, .on_quartz, .full_workflow]
needs: []
Expand Down
4 changes: 2 additions & 2 deletions .gitlab/build_tioga.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
.src_build_on_tioga:
stage: build
variables:
ALLOC_COMMAND: "flux mini run --exclusive --time-limit=30m --nodes=1"
ALLOC_COMMAND: "flux run --exclusive --time-limit=30m --nodes=1"
extends: [.src_build_script, .on_tioga, .src_workflow]
needs: []

.full_build_on_tioga:
stage: build
variables:
ALLOC_COMMAND: "flux mini run --exclusive --time-limit=60m --nodes=1"
ALLOC_COMMAND: "flux run --exclusive --time-limit=60m --nodes=1"
extends: [.full_build_script, .on_tioga, .full_workflow]
needs: []

Expand Down

0 comments on commit 9410ed3

Please sign in to comment.