Skip to content

Commit 7ec2cb8

Browse files
authoredApr 9, 2021
Merge pull request #478 from LLNL/v0.4.0-rc
0.4.0 rc
2 parents c253509 + 4ebdb32 commit 7ec2cb8

File tree

162 files changed

+5722
-1540
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

162 files changed

+5722
-1540
lines changed
 

‎.gitlab-ci.yml

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
##############################################################################
2+
# Copyright (c) 2017-2021, Lawrence Livermore National Security, LLC and BLT
3+
# project contributors. See the LICENSE file for details.
4+
##############################################################################
5+
6+
variables:
7+
PROJECT_ALLOC_NAME: ${CI_PROJECT_NAME}_ci_${CI_PIPELINE_ID}
8+
BUILD_ROOT: ${CI_PROJECT_DIR}
9+
10+
stages:
11+
- l_build
12+
- q_allocate_resources
13+
- q_build
14+
- q_release_resources
15+
16+
####
17+
# Template
18+
.srun_build_script:
19+
script:
20+
#Use pre-existing allocation if any
21+
- JOBID=$(squeue -h --name=${PROJECT_ALLOC_NAME} --format=%A)
22+
- ASSIGN_ID=$(if [[ -n "${JOBID}" ]]; then echo "--jobid=${JOBID}"; fi)
23+
- EXEC_PREFIX="srun -p pdebug ${ASSIGN_ID} -t 10 -N 1 --mpibind=off"
24+
#BUILD + TEST
25+
- echo -e "section_start:$(date +%s):build_and_test\r\e[0K
26+
Build and test ${CI_PROJECT_NAME}"
27+
- ${EXEC_PREFIX} .gitlab/build_and_test.sh
28+
- echo -e "section_end:$(date +%s):build_and_test\r\e[0K"
29+
artifacts:
30+
reports:
31+
junit: build/junit.xml
32+
33+
34+
.build_blueos_3_ppc64le_ib_p9_script:
35+
script:
36+
- EXEC_PREFIX="lalloc 1 -W 10 -q pdebug"
37+
#BUILD + TEST
38+
- echo -e "section_start:$(date +%s):build_and_test\r\e[0K
39+
Build and test ${CI_PROJECT_NAME}"
40+
- ${EXEC_PREFIX} .gitlab/build_and_test.sh
41+
- echo -e "section_end:$(date +%s):build_and_test\r\e[0K"
42+
artifacts:
43+
reports:
44+
junit: build/junit.xml
45+
46+
47+
# This is where jobs are included
48+
include:
49+
- local: .gitlab/build_quartz.yml
50+
- local: .gitlab/build_lassen.yml

‎.gitlab/build_and_test.sh

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#!/bin/bash
2+
3+
set -e
4+
5+
BUILD_DIR=`pwd`/build
6+
7+
echo "~~~~~~~~~~ START:build_and_test.sh ~~~~~~~~~~~"
8+
echo "CWD="`pwd`
9+
echo "BUILD_DIR="$BUILD_DIR
10+
echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
11+
12+
rm -rf $BUILD_DIR
13+
mkdir $BUILD_DIR
14+
cd $BUILD_DIR
15+
16+
cmake -C ../host-configs/llnl/$SYS_TYPE/$HOST_CONFIG ../tests/internal
17+
make -j8
18+
ctest -DCTEST_OUTPUT_ON_FAILURE=1 --no-compress-output -T Test -VV
19+
xsltproc -o junit.xml ../tests/ctest-to-junit.xsl Testing/*/Test.xml
20+
21+
echo "~~~~~~~~~~ END:build_and_test.sh ~~~~~~~~~~~~~"
22+
echo "CWD="`pwd`
23+
echo "BUILD_DIR="$BUILD_DIR
24+
echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"

0 commit comments

Comments
 (0)
Please sign in to comment.