-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Keita Iwabuchi
committed
Jan 7, 2025
1 parent
5e3b2b6
commit be5b033
Showing
1 changed file
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,9 @@ | |
# It would be better to install all Boost versions manually, | ||
# as it causes errors often and could exceed the timelimit of the system. | ||
|
||
# For '--reserv=ci' option in Slurm, see: | ||
# https://lc.llnl.gov/confluence/spaces/GITLAB/pages/785285769/Special+partitions+for+CI+batch+jobs | ||
|
||
include: [component: $CI_SERVER_FQDN/lc-components/id_tokens/id_tokens-component@main] | ||
|
||
stages: | ||
|
@@ -25,8 +28,7 @@ install_boost: | |
- shell | ||
script: | ||
- hostname | ||
- srun -N1 -ppci -A seq spack install [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] | ||
- spack clean | ||
- srun -N1 --reserv=ci -A seq sh -c 'for p in "[email protected]" "[email protected]" "[email protected]" "[email protected]" "[email protected]" "[email protected]" "[email protected]"; do spack install --reuse $p; done; spack clean' | ||
|
||
|
||
.build: | ||
|
@@ -39,7 +41,7 @@ install_boost: | |
- module load gcc/${GCC_VERSION} | ||
- spack load --first boost@${BOOST_VERSION} arch=$(spack arch) | ||
- export METALL_TEST_DIR="/dev/shm/metall_test-${CI_CONCURRENT_ID}-${CI_PIPELINE_IID}" | ||
- srun -N1 -ppci -A seq bash ./scripts/CI/build_and_test.sh | ||
- srun -N1 --reserv=ci -A seq bash ./scripts/CI/build_and_test.sh | ||
|
||
build_gcc12.1.1_bst1.86.0: | ||
extends: .build | ||
|