Skip to content

Commit

Permalink
Merge pull request #26 from wihobbs/poodle-debugging
Browse files Browse the repository at this point in the history
update bank information, add poodle debugging
  • Loading branch information
wihobbs authored Feb 18, 2025
2 parents 891d623 + 895e6da commit 079218a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
19 changes: 18 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,23 @@ default:
# Note: the above will not work with /usr/workspace, you must specify WS1 or WS2

## Job Specifications
.test-core-poodle:
extends: .lc-variables
variables:
PYTHON: "/usr/bin/python3"
debug: t
FLUX_TESTS_LOGFILE: t
script:
- echo $CI_DIRECTORY
- cd ${CORE_BUILD_DIR}
- lstopo --of xml >$(hostname).xml
- export FLUX_HWLOC_XMLFILE=$(pwd)/$(hostname).xml
- make check
## The following is teardown to make sure the xml file doesn't get reused
## but maybe it's unnecessary. Subsequent tests will run under new shells...
- rm ${FLUX_HWLOC_XMLFILE}
- unset FLUX_HWLOC_XMLFILE

.test-core:
extends: .lc-variables
variables:
Expand Down Expand Up @@ -136,7 +153,7 @@ poodle-core-build:
poodle-core-test:
needs: ["poodle-core-build"]
extends:
- .test-core
- .test-core-poodle
- .poodle
stage: test

Expand Down
4 changes: 2 additions & 2 deletions .gitlab/machines.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
- poodle
- batch
variables:
LLNL_SLURM_SCHEDULER_PARAMETERS: "--exclusive -N 1 -p pdebug"
LLNL_SLURM_SCHEDULER_PARAMETERS: "--exclusive -A lc -N 1 -p pdebug"

.tioga:
tags:
- tioga
- batch
variables:
LLNL_FLUX_SCHEDULER_PARAMETERS: "--exclusive -N 1 -q pci"
LLNL_FLUX_SCHEDULER_PARAMETERS: "--exclusive -N 1 -q pci --setattr=bank=lc"

0 comments on commit 079218a

Please sign in to comment.