forked from xkszltl/Roaster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
133 lines (115 loc) · 2.59 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
variables:
GIT_SUBMODULE_STRATEGY: recursive
image:
name: docker.codingcafe.org/xkszltl/roaster/centos
stages:
- init
- repo
- font
- pkg-stable
- pkg-skip
- tex
- ss
- infra
- llvm
- util
- misc
- dl
- edit
- finish
init:
stage: init
retry: 2
tags:
- docker
- gpu
only:
- /^(build|resume)-init$/
except:
- branches
script:
- until docker pull centos; do echo "Retry docker pull..."; done
- gitlab-ci/build_stage.sh
.docker_build_stage_template: &docker_build_stage
retry: 2
tags:
- docker
- gpu
except:
- branches
script:
- gitlab-ci/build_stage.sh
repo:
stage: repo
only:
- /^(build|resume)-(init|repo)$/
<<: *docker_build_stage
font:
stage: font
only:
- /^(build|resume)-(init|repo|font)$/
<<: *docker_build_stage
pkg-stable:
stage: pkg-stable
only:
- /^(build|resume)-(init|repo|font|pkg-stable)$/
<<: *docker_build_stage
pkg-skip:
stage: pkg-skip
only:
- /^(build|resume)-(init|repo|font|pkg-(stable|skip))$/
<<: *docker_build_stage
tex:
stage: tex
only:
- /^(build|resume)-(init|repo|font|pkg-(stable|skip|all)|tex)$/
<<: *docker_build_stage
ss:
stage: ss
only:
- /^(build|resume)-(init|repo|font|pkg-(stable|skip|all)|tex|ss)$/
<<: *docker_build_stage
infra:
stage: infra
only:
- /^(build|resume)-(init|repo|font|pkg-(stable|skip|all)|ss|tex|infra)$/
<<: *docker_build_stage
llvm:
stage: llvm
only:
- /^(build|resume)-(init|repo|font|pkg-(stable|skip|all)|ss|tex|infra|llvm)$/
<<: *docker_build_stage
util:
stage: util
only:
- /^(build|resume)-(init|repo|font|pkg-(stable|skip|all)|ss|tex|infra|llvm|util)$/
<<: *docker_build_stage
misc:
stage: misc
only:
- /^(build|resume)-(init|repo|font|pkg-(stable|skip|all)|ss|tex|infra|llvm|util|misc)$/
<<: *docker_build_stage
dl:
stage: dl
only:
- /^(build|resume)-(init|repo|font|pkg-(stable|skip|all)|ss|tex|infra|llvm|util|misc|dl)$/
<<: *docker_build_stage
edit:
stage: edit
only:
- /^(build|resume)-(init|repo|font|pkg-(stable|skip|all)|ss|tex|infra|llvm|util|misc|dl|edit)$/
<<: *docker_build_stage
finish:
stage: finish
retry: 2
tags:
- docker
- gpu
only:
- /^(build|resume)-(init|repo|font|pkg-(stable|skip|all)|ss|tex|infra|llvm|util|misc|dl|edit|finish)$/
except:
- branches
script:
- docker login --password-stdin --username $CI_REGISTRY_USER $CI_REGISTRY <<< "$CI_REGISTRY_PASSWORD"
- docker tag $CI_REGISTRY_IMAGE/centos:stage-edit $CI_REGISTRY_IMAGE/centos:latest
- time docker push $CI_REGISTRY_IMAGE/centos:latest