Newer
Older
# yaml-language-server: $schema=gitlab-ci
# yaml-language-server: $format.enable=false
stages:
- environment
- concretize
- install
- deploy
workflow:
rules:
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
- if: $CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS
when: never
# ------------------------------------------------------------------------------
.parallel_job:
- environment: [jed]
slurm_options: ["-c 72 -p jed -q jed"]
stack: ["pinot-noir"]
# - environment: [izar]
# slurm_options: ['-c 40 --gres gpu:2']
# apptainer_options: ['-nv']
# - environment: [helvetios]
# slurm_options: ["-c 36"]
# stack: ["pinot-noir"]
tags:
- ${environment}
- stack
variables:
COMMAND_OPTIONS_SBATCH: ${slurm_options}
STACK_CONFIG: ${CI_PROJECT_DIR}/stacks/${stack}/config.json
STACK_LOCATION: $(jq -r .stack.mount_point ${STACK_CONFIG})
APPTAINER_EXEC_OPTIONS: ${apptainer_options} --bind ${BUILDCACHE}:/buildcache:rw --bind ${CI_PROJECT_DIR}:${STACK_LOCATION}
SPACK_USER_CACHE_PATH: "/tmp/spack_cache_${CI_JOB_ID}"
SPACK_USER_CONFIG_PATH: "/tmp/spack_user_${CI_JOB_ID}"
BUILDCACHE: "/work/scitas-ge/richart/ci/buildcache"
.spack_cache:
- stacks/${stack}/compiler_definitions.yaml
# ------------------------------------------------------------------------------
spack:setup:
- .spack_cache
before_script:
- git config --global --add --bool advice.detachedHead false
- .spack_cache
- spack/bin/spack -e stacks/${stack} config blame compilers
after_script:
- if [ ! -e spack-install.xml ]; then
artifacts:
reports:
junit: spack-install.xml
- .spack_cache
- spack/bin/spack -e ${SPACK_SYSTEM_CONFIG_PATH} config blame
- spack/bin/spack -e ${SPACK_SYSTEM_CONFIG_PATH} concretize
- .spack_cache
- spack/bin/spack -e ${SPACK_SYSTEM_CONFIG_PATH} install
--log-file spack-install.xml
--log-format junit
--only-concrete
--fail-fast
--show-log-on-error
- spack/bin/spack -e ${SPACK_SYSTEM_CONFIG_PATH} buildcache create
--update-index
--key EDC904DCE3D2E84E
/buildcache
after_script:
- if [ ! -e spack-install.xml ]; then
spack:mksquashfs:
stage: deploy
extends:
- .spack_cache
- .parallel_job
script:
- "mksquashfs ${CI_PROJECT_DIR} stack-${stack}-${environment}-${CI_COMMIT_REF_SLUG}.sqfs"
- 'curl --header "JOB-TOKEN: $CI_JOB_TOKEN" --upload-file stack-${stack}-${environment}-${CI_COMMIT_REF_SLUG}.sqfs "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/stack/${stack}/stack-${stack}-${environment}-${CI_COMMIT_REF_SLUG}.sqfs"'
needs:
- job: spack:install
timeout: 10h