Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Rex Dri
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
32
Issues
32
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Rex Dri
Rex Dri
Commits
80dc3633
Commit
80dc3633
authored
Feb 24, 2019
by
Florent Chehab
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated CI for UML generation
parent
2d9098be
Pipeline
#35393
passed with stages
in 3 minutes and 20 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
4 deletions
+24
-4
.gitlab-ci.yml
.gitlab-ci.yml
+24
-4
No files found.
.gitlab-ci.yml
View file @
80dc3633
...
...
@@ -2,6 +2,7 @@ stages:
-
check
-
test
-
lint
-
svg-gen-docu
# required to be done before documentation and in separate stages
-
documentation
variables
:
...
...
@@ -22,8 +23,12 @@ check_back:
services
:
-
postgres:10.5
script
:
-
cd backend
-
./manage.py check
-
cd backend && ./manage.py check
-
cd ../documentation && make extract_django
# Try to generate .dot files for the system architecture
artifacts
:
paths
:
-
documentation/generated/
expire_in
:
1 hour
tags
:
-
docker
...
...
@@ -51,7 +56,7 @@ test_back:
artifacts
:
paths
:
-
backend/htmlcov/
expire_in
:
1
month
expire_in
:
1
hour
tags
:
-
docker
...
...
@@ -76,15 +81,30 @@ eslint:
tags
:
-
docker
generate_UML_svg
:
stage
:
svg-gen-docu
image
:
floawfloaw/plantuml
script
:
cd documentation && make convert_to_svg
dependencies
:
-
check_back
artifacts
:
paths
:
-
documentation/generated/
expire_in
:
1 hour
only
:
-
master
tags
:
-
docker
pages
:
stage
:
documentation
image
:
floawfloaw/plantuml
dependencies
:
-
test_back
-
generate_UML_svg
script
:
-
mkdir .public
-
mv backend/htmlcov/ .public/coverage
-
make documentation
-
mv documentation/ .public/documentation
-
mv .public public
artifacts
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment