-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
70 lines (66 loc) · 1.28 KB
/
.gitlab-ci.yml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
stages:
- format_checker
- tester
- release
- build_pages
lint:
stage: format_checker
image: your_docker_image
script:
- env | sort
- nvidia-smi
- make dev
- make lint
only:
- merge_requests
- /^v(?P<major>0|[1-9]\d*)\.(?P<minor>0|[1-9]\d*)\.(?P<patch>0|[1-9]\d*)$/
tags:
- your git lab ci-runner-tag
interruptible: true
test:
stage: tester
image: your_docker_image
script:
- env | sort
- nvidia-smi
- make dev
- make test
only:
- merge_requests
- /^v(?P<major>0|[1-9]\d*)\.(?P<minor>0|[1-9]\d*)\.(?P<patch>0|[1-9]\d*)$/
tags:
- your git lab ci-runner-tag
interruptible: true
package:
stage: release
image: your_docker_image
script:
- env | sort
- make build
- make upload
only:
- /^v(?P<major>0|[1-9]\d*)\.(?P<minor>0|[1-9]\d*)\.(?P<patch>0|[1-9]\d*)$/
tags:
- your git lab ci-runner-tag
interruptible: true
pages:
stage: build_pages
image: your_docker_image
script:
- make dev
- make docs
artifacts:
paths:
- public
only:
refs:
- master
- /^v(?P<major>0|[1-9]\d*)\.(?P<minor>0|[1-9]\d*)\.(?P<patch>0|[1-9]\d*)$/
changes:
- docs/**/*
except:
refs:
- schedules
tags:
- your git lab ci-runner-tag
interruptible: true