Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pugs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
code
pugs
Merge requests
!19
Feature/ci
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Feature/ci
feature/ci
into
develop
Overview
0
Commits
19
Pipelines
0
Changes
9
Merged
Feature/ci
Stéphane Del Pino
requested to merge
feature/ci
into
develop
May 15, 2019
Overview
0
Commits
19
Pipelines
0
Changes
9
Add different build targets Now there are
clang8 coverage/release seq/mpi
g++8 debug/release seq
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
d8ae0c63
19 commits,
May 15, 2019
9 files
+
183
−
32
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
.gitlab-ci/clang8-mpi-coverage.yml
0 → 100644
+
27
−
0
View file @ d8ae0c63
Edit in single-file editor
Open in Web IDE
build:clang8-mpi-coverage
:
image
:
localhost:5000/ubuntu_clang8_mpi
stage
:
build
script
:
-
mkdir -p build/clang8-cov-mpi
-
cd build/clang8-cov-mpi
-
CXX=clang++-8 CC=clang-8 cmake ../.. -DCMAKE_BUILD_TYPE=Coverage -DCLANG_FORMAT=/usr/bin/clang-format-8
-
make pugs
cache
:
key
:
"
${CI_COMMIT_REF_SLUG}-clang8-cov-mpi"
paths
:
-
build/clang8-cov-mpi
untracked
:
true
test:clang8-mpi-coverage
:
image
:
localhost:5000/ubuntu_clang8_mpi
stage
:
test
dependencies
:
-
build:clang8-mpi-coverage
script
:
-
cd build/clang8-cov-mpi
-
make coverage
cache
:
key
:
"
${CI_COMMIT_REF_SLUG}-clang8-cov-mpi"
paths
:
-
build/clang8-cov-mpi
untracked
:
true
Loading