-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
executable file
·30 lines (26 loc) · 970 Bytes
/
.gitlab-ci.yml
File metadata and controls
executable file
·30 lines (26 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
###############################################################################
# N2D2 Continious Integration and Continious Deployment #
# #
###############################################################################
stages:
# Build N2D2
- build
# Unit test stage
- test
# Generate documentation files
- documentation
# Deploy N2D2 code to other web interfaces
- deploy
# Nightly build stage
- nightly-build
# Nightly test stage
- nightly-test
include:
- local: '/.gitlab/ci/_global.gitlab-ci.yml'
- local: '/.gitlab/ci/_rules.gitlab-ci.yml'
- local: '/.gitlab/ci/build.gitlab-ci.yml'
- local: '/.gitlab/ci/test.gitlab-ci.yml'
- local: '/.gitlab/ci/documentation.gitlab-ci.yml'
- local: '/.gitlab/ci/deploy.gitlab-ci.yml'
- local: '/.gitlab/ci/nightly-build.gitlab-ci.yml'
- local: '/.gitlab/ci/nightly-test.gitlab-ci.yml'