forked from LLNL/SAMRAI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
109 lines (93 loc) · 3.65 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#########################################################################
#
# This file is part of the SAMRAI distribution. For full copyright
# information, see COPYRIGHT and LICENSE.
#
# Copyright: (c) 1997-2020 Lawrence Livermore National Security, LLC
#
#########################################################################
# General GitLab pipelines configurations for supercomputers and Linux clusters
# at Lawrence Livermore National Laboratory (LLNL). This entire pipeline is
# LLNL-specific
# We define the following GitLab pipeline variables:
#
# GIT_SUBMODULE_STRATEGY:
# Tells Gitlab to recursively update the submodules when cloning samrai
#
# SAMRAI_ALLOC_NAME:
# On LLNL's quartz, this pipeline creates only one allocation shared among jobs
# in order to save time and resources. This allocation has to be uniquely named
# so that we are sure to retrieve it.
#
# BUILD_ROOT:
# The path to the shared resources between all jobs. The BUILD_ROOT is unique to
# the pipeline, preventing any form of concurrency with other pipelines. This
# also means that the BUILD_ROOT directory will never be cleaned.
# TODO: add a clean-up mechanism
variables:
GIT_SUBMODULE_STRATEGY: recursive
SAMRAI_ALLOC_NAME: samrai_ci_${CI_PIPELINE_ID}
BUILD_ROOT: ${CI_BUILDS_DIR}/samrai/${CI_COMMIT_REF_SLUG}_${CI_PIPELINE_ID}
# This defines the default behavior, may be overridden it.
before_script:
- date
after_script:
- date
# Normally, stages are blocking in Gitlab. However, using the keyword "needs" we
# can express dependencies between job that break the ordering of stages, in
# favor of a DAG.
# In practice q_*, l_* and b_* stages are independently run as soon as start is
# complete.
stages:
- start
- q_build
- q_test
- l_build_and_test
- b_build_and_test
# The start job is actually a dumb one, which serves as a reference to start
# q_allocate_resources, l_build_and_test and b_build_and_test simultaneously.
# TODO: GitLab 12.8 will allow for empty "needs" to trigger the job asap,
# this start job will no be necessary anymore.
# Note: "GIT_STRATEGY: none" tells GitLab not to clone samrai for this job.
start:
variables:
GIT_STRATEGY: none
stage: start
tags:
- shell
- quartz
script:
- echo "Creating a reference job for dag execution (needs keyword)"
# This is the rules that drives the activation of "advanced" jobs. All advanced
# jobs will share this through a template mechanism.
.advanced_pipeline:
rules:
- if: '$CI_COMMIT_BRANCH == "master" || $CI_COMMIT_BRANCH == "develop" || $SAMRAI_ALL_TARGETS == "ON"' #run only if ...
# These are also templates (.name) that define project specific build commands.
# If an allocation exist with the name defined in this pipeline, the job will
# use it (slurm specific).
.build_toss_3_x86_64_ib_script:
script:
- echo ${SAMRAI_ALLOC_NAME}
- export JOBID=$(squeue -h --name=${SAMRAI_ALLOC_NAME} --format=%A)
- echo ${JOBID}
- srun -p pdebug -t 10 -N 1 source/scripts/gitlab/build_and_test.sh --build-only
.test_toss_3_x86_64_ib_script:
script:
- echo ${SAMRAI_ALLOC_NAME}
- export JOBID=$(squeue -h --name=${SAMRAI_ALLOC_NAME} --format=%A)
- echo ${JOBID}
- srun -p pdebug -t 30 -N 1 source/scripts/gitlab/build_and_test.sh --test-only
artifacts:
paths:
- ctest_report_*.xml
# Lassen and Butte use a different job scheduler (spectrum lsf) that does not
# allow pre-allocation the same way slurm does.
.build_blueos_3_ppc64le_ib_script:
script:
- lalloc 1 -W 10 source/scripts/gitlab/build_and_test.sh
.build_blueos_3_ppc64le_ib_p9_script:
extends: .build_blueos_3_ppc64le_ib_script
# This is where jobs are included
include:
- local: .gitlab/quartz.yml