forked from sirius-ms/sirius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
220 lines (200 loc) · 5.19 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
# This is the Gradle build system for JVM applications
# https://gradle.org/
# https://github.com/gradle/gradle
#image: gradle:alpine
default:
image: git.bio.informatik.uni-jena.de:5050/bioinf-mit/docker-images/ubuntu-zulu-fx-gradle:22.04-15.42.15-6.9.2-9
# Disable the Gradle daemon for Continuous Integration servers as correctness
# is usually a priority over speed in CI environments. Using a fresh
# runtime for each build is more reliable since the runtime is completely
# isolated from any previous builds.
stages:
- clean
- prepare
- build
- test
- publish
before_script:
- dpkg-reconfigure -p critical ca-certificates
- eval `ssh-agent -s`
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null # add ssh key
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- echo "$GITLAB_GITHUB_SIRIUS_PUBLIC_KEY" >> ~/.ssh/id_ed25519.pub
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
buildCLI:
stage: build
script:
- gradle :sirius_dist:sirius_cli_single_os:distImage
cache:
key: "$CI_COMMIT_REF_NAME"
policy: push
artifacts:
paths:
- ./sirius_dist/sirius_cli_single_os/build/distributions/sirius
tags:
- kubernetes
only:
refs:
- master
- stable
buildGUI:
stage: build
script:
- gradle :sirius_dist:sirius_gui_single_os:distImage
cache:
key: "$CI_COMMIT_REF_NAME"
policy: push
artifacts:
paths:
- ./sirius_dist/sirius_gui_single_os/build/distributions/sirius
tags:
- kubernetes
only:
refs:
- master
- stable
buildAPI:
stage: build
script:
- gradle :sirius_dist:sirius_service_single_os:distImage
cache:
key: "$CI_COMMIT_REF_NAME"
policy: push
artifacts:
paths:
- ./sirius_dist/sirius_service_single_os/build/distributions/sirius
tags:
- kubernetes
only:
refs:
- master
- stable
testCLI:
stage: test
script:
- ./sirius_dist/sirius_cli_single_os/build/distributions/sirius/bin/sirius login --user-env SIRIUS_USER --password-env SIRIUS_PW
- gradle :sirius_dist:sirius_cli_single_os:distImageTest
cache:
key: "$CI_COMMIT_REF_NAME"
policy: push
needs: [buildCLI]
dependencies:
- buildCLI
tags:
- kubernetes
only:
refs:
- master
- stable
testGUI:
stage: test
script:
- ./sirius_dist/sirius_gui_single_os/build/distributions/sirius/bin/sirius login --user-env SIRIUS_USER --password-env SIRIUS_PW
- gradle :sirius_dist:sirius_gui_single_os:distImageTest
cache:
key: "$CI_COMMIT_REF_NAME"
policy: push
needs: [buildGUI]
dependencies:
- buildGUI
tags:
- kubernetes
only:
refs:
- master
- stable
testAPI:
stage: test
script:
- ./sirius_dist/sirius_service_single_os/build/distributions/sirius/bin/sirius login --user-env SIRIUS_USER --password-env SIRIUS_PW
- gradle :sirius_dist:sirius_service_single_os:distImageTest
cache:
key: "$CI_COMMIT_REF_NAME"
policy: push
needs: [buildAPI]
dependencies:
- buildAPI
tags:
- kubernetes
only:
refs:
- master
- stable
publishCLI:
variables:
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
stage: publish
script:
- cd sirius_dist/sirius_cli_single_os
- gradle clean artifactoryPublish --refresh-dependencies -P "de.unijena.bioinf.build.artifactory.username=$ARTIFACTORY_USERNAME" -P "de.unijena.bioinf.build.artifactory.password=$ARTIFACTORY_TOKEN"
cache:
key: "$CI_COMMIT_REF_NAME"
policy: push
needs: [buildCLI, testCLI]
dependencies:
- buildCLI
tags:
- kubernetes
only:
refs:
- master
- stable
publishGUI:
variables:
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
stage: publish
script:
- cd sirius_dist/sirius_gui_single_os
- gradle clean artifactoryPublish --refresh-dependencies -P "de.unijena.bioinf.build.artifactory.username=$ARTIFACTORY_USERNAME" -P "de.unijena.bioinf.build.artifactory.password=$ARTIFACTORY_TOKEN"
cache:
key: "$CI_COMMIT_REF_NAME"
policy: push
needs: [buildGUI, testGUI]
dependencies:
- buildGUI
tags:
- kubernetes
only:
refs:
- master
- stable
publishAPI:
variables:
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
stage: publish
script:
- cd sirius_dist/sirius_gui_single_os
- gradle clean artifactoryPublish --refresh-dependencies -P "de.unijena.bioinf.build.artifactory.username=$ARTIFACTORY_USERNAME" -P "de.unijena.bioinf.build.artifactory.password=$ARTIFACTORY_TOKEN"
cache:
key: "$CI_COMMIT_REF_NAME"
policy: push
needs: [buildAPI, testAPI]
dependencies:
- buildAPI
tags:
- kubernetes
only:
refs:
- master
- stable
#push to github to build for multiple OSs
pushToGitHub:
stage: publish
script:
- git config --global user.email "${GITLAB_GITHUB_SIRIUS_USERNAME}"
- git config --global user.name "boeckergitlab"
- git remote show origin
- git remote set-url --push origin git@github.com:boecker-lab/sirius.git
- git remote show origin
- git push --follow-tags origin HEAD:$CI_COMMIT_REF_NAME
cache:
key: "$CI_COMMIT_REF_NAME"
policy: push
needs: [testCLI, testGUI, testAPI]
tags:
- kubernetes
only:
refs:
- stable
- master