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
!68
Change CI pipeline
Code
Examiner les modifications
Extraire la branche
Télécharger
Correctifs
Diff brut
Étendre la barre latérale
Merged
Change CI pipeline
gitlab/simplify-pipeline
into
develop
Overview
0
Commits
1
Pipelines
0
Changes
8
Merged
Change CI pipeline
Stéphane Del Pino
requested to merge
gitlab/simplify-pipeline
into
develop
Nov 11, 2020
Overview
0
Commits
1
Pipelines
0
Changes
8
merge build and test targets: this avoids recompiling most of the same files twice in the same conditions (build have been removed)
remove gcc-debug targets. Actually gcc-coverage use debug options
This should lead to faster ci runs
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
6e763f14
1 commit,
Nov 11, 2020
8 files
+
15
−
100
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
.gitlab-ci/clang10-mpi-debug.yml
+
3
−
17
View file @ 6e763f14
Edit in single-file editor
Open in Web IDE
Show full file
build:clang10-mpi-debug
:
image
:
localhost:5000/ubuntu_clang10_mpi
stage
:
build
needs
:
[]
script
:
-
mkdir -p build/clang10-debug-mpi
-
cd build/clang10-debug-mpi
-
CXX=clang++-10 CC=clang-10 cmake ../.. -DCMAKE_BUILD_TYPE=Debug
-
make pugs
cache
:
key
:
"
${CI_COMMIT_REF_SLUG}-clang10-debug-mpi"
paths
:
-
build/clang10-debug-mpi
untracked
:
true
test:clang10-mpi-debug
:
test:clang10-mpi-debug
:
image
:
localhost:5000/ubuntu_clang10_mpi
image
:
localhost:5000/ubuntu_clang10_mpi
stage
:
test
stage
:
test
needs
:
[
"
build:clang10-mpi-debug"
]
needs
:
[]
script
:
script
:
-
mkdir -p build/clang10-debug-mpi
-
mkdir -p build/clang10-debug-mpi
-
cd build/clang10-debug-mpi
-
cd build/clang10-debug-mpi
-
CXX=clang++-10 CC=clang-10 cmake ../.. -DCMAKE_BUILD_TYPE=Debug
-
CXX=clang++-10 CC=clang-10 cmake ../.. -DCMAKE_BUILD_TYPE=Debug
-
make test
-
make
-
make check
cache
:
cache
:
key
:
"
${CI_COMMIT_REF_SLUG}-clang10-debug-mpi"
key
:
"
${CI_COMMIT_REF_SLUG}-clang10-debug-mpi"
paths
:
paths
:
Loading