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
Commits
43bc96fe
Commit
43bc96fe
authored
Jun 6, 2018
by
Stéphane Del Pino
Committed by
Stéphane Del Pino
Jun 7, 2018
Browse files
Options
Downloads
Patches
Plain Diff
Update .gitlab-ci.yml
parent
15e3a4c3
No related branches found
No related tags found
1 merge request
!4
Cicd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+15
-1
15 additions, 1 deletion
.gitlab-ci.yml
with
15 additions
and
1 deletion
.gitlab-ci.yml
+
15
−
1
View file @
43bc96fe
...
@@ -13,6 +13,7 @@ cache:
...
@@ -13,6 +13,7 @@ cache:
stages
:
stages
:
-
build
-
build
-
test
-
test
-
deploy
build
:
build
:
stage
:
build
stage
:
build
...
@@ -22,10 +23,23 @@ build:
...
@@ -22,10 +23,23 @@ build:
-
CXX=g++-7 CC=gcc-7 cmake .. -DCMAKE_BUILD_TYPE=Coverage
-
CXX=g++-7 CC=gcc-7 cmake .. -DCMAKE_BUILD_TYPE=Coverage
-
make pastis
-
make pastis
test
:
test
s
:
stage
:
test
stage
:
test
script
:
script
:
-
ls > /dev/null
# seems necessary to ensure build is here...
-
ls > /dev/null
# seems necessary to ensure build is here...
-
cd build
-
cd build
-
make unit_tests
-
make unit_tests
-
make coverage-report
-
make coverage-report
pages
:
stage
:
deploy
dependencies
:
-
tests
script
:
-
ls > /dev/null
# seems necessary to ensure build is here...
-
rm -rf public/
-
mv build/coverage/ public/
artifacts
:
paths
:
-
public
expire_in
:
30 days
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment