-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy path.gitlab-ci.yml
235 lines (224 loc) · 6.73 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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
# This is the Gradle build system for JVM applications
# https://gradle.org/
# https://github.com/gradle/gradle
#image: gradle:alpine
default:
image: gradle:8.12-jdk21
# image: registry.gitlab.com/bright-giant/docker-images/ubuntu-jdk-lapack:ubuntu-zulu-21
tags: [$RUNNER_TAGS]
# 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:
# - test-libs
# - build-publish-libs
- libs
- build-app
- test-app
- publish-app
variables:
GRADLE_OPTS: "-Dorg.gradle.daemon=false -Dorg.gradle.parallel=true"
GRADLE_USER_HOME: $CI_PROJECT_DIR/.gradle
cache:
# Cache for Gradle Wrapper
- key: "wrapper-${CI_COMMIT_REF_SLUG}"
paths:
- .gradle/wrapper/
# Cache for Gradle Dependencies
- key: "dependencies-${CI_COMMIT_REF_SLUG}"
paths:
- .gradle/caches/
before_script:
- VSNAP=$(head -2 sirius_cli/src/main/resources/sirius_frontend.build.properties | tail -1 | cut -d '=' -f 2)
- echo "Using Gradle user home at $GRADLE_USER_HOME"
build_test_publish_libs:
stage: libs
script:
- |
echo "===> Running Unit Tests"
gradle test --stacktrace
- |
echo "===> Running Integration Tests"
gradle integrationTest --stacktrace
- |
if [[ "$CI_COMMIT_BRANCH" == "master" || "$CI_COMMIT_BRANCH" == "stable" ]]; then
echo "===> Publishing Libraries to Gitlab Registry"
gradle publishMavenJavaPublicationToGitLabRepository --stacktrace
fi
- |
if [[ "$CI_COMMIT_BRANCH" == "stable" ]]; then
echo "===> Publishing Sirius SDK Public Gitlab Registry"
gradle publishMavenJavaPublicationToGitLabPublicRepository --stacktrace
fi
artifacts:
when: on_failure
reports:
junit:
- "**/build/test-results/test/TEST-*.xml"
- "**/build/test-results/integrationTest/TEST-*.xml"
#unitTests:
# variables:
# GRADLE_OPTS: "-Dorg.gradle.daemon=false"
# stage: test-libs
# script:
# - ./gradlew test --stacktrace
# artifacts:
# when: on_failure
# reports:
# junit: "**/build/test-results/test/TEST-*.xml"
#
#integrationTests:
# variables:
# GRADLE_OPTS: "-Dorg.gradle.daemon=false"
# stage: test-libs
# script:
# - ./gradlew integrationTest --stacktrace
# artifacts:
# when: on_failure
# reports:
# junit: "**/build/test-results/integrationTest/TEST-*.xml"
acceptanceTests:
stage: test-app
when: manual
script:
- gradle acceptanceTest --stacktrace
artifacts:
when: on_failure
reports:
junit: "**/build/test-results/acceptanceTest/TEST-*.xml"
#buildCLI:
# stage: build-app
# when: manual
# script:
# - ./gradlew :sirius_dist:sirius_cli_single_os:publishSiriusMSPublicationToMavenLocal -P "build.sirius.starter.jdk.include=true"
# - mkdir maven_artifacts
# - mv ~/.m2/repository/de/unijena/bioinf/ms/siriusMS/$VSNAP maven_artifacts
# cache:
# key: "$CI_COMMIT_REF_NAME"
# policy: push
# artifacts:
# paths:
# - ./maven_artifacts/$VSNAP
# expire_in: 3 days
# only:
# refs:
# - master
# - stable
#
#buildGUI:
# stage: build-app
# when: manual
# script:
# - ./gradlew :sirius_dist:sirius_gui_dist:publishSiriusMSPublicationToMavenLocal -P "build.sirius.native.openjfx.exclude=true" -P "build.sirius.starter.jdk.include=true"
# - mkdir maven_artifacts
# - mv ~/.m2/repository/de/unijena/bioinf/ms/siriusMS/$VSNAP maven_artifacts
# cache:
# key: "$CI_COMMIT_REF_NAME"
# policy: push
# artifacts:
# paths:
# - ./maven_artifacts/$VSNAP
# expire_in: 3 days
# only:
# refs:
# - master
# - stable
#
#testCLI:
# stage: test-app
# when: manual
# script:
# - mkdir unzipped
# - unzip maven_artifacts/$VSNAP/siriusMS-$VSNAP-linux64-headless.zip -d unzipped
# - ./unzipped/sirius/bin/sirius login --user-env SIRIUS_USER --password-env SIRIUS_PW
# - ./gradlew :sirius_dist:sirius_cli_single_os:distImageTestCICD
# cache:
# key: "$CI_COMMIT_REF_NAME"
# policy: push
# needs: [buildCLI]
# dependencies:
# - buildCLI
# only:
# refs:
# - master
# - stable
#
#testGUI:
# stage: test-app
# when: manual
# script:
# - mkdir unzipped
# - unzip maven_artifacts/$VSNAP/siriusMS-$VSNAP-linux64.zip -d unzipped
# - ./unzipped/sirius/bin/sirius login --user-env SIRIUS_USER --password-env SIRIUS_PW
# - ./gradlew :sirius_dist:sirius_cli_single_os:distImageTestCICD
# cache:
# key: "$CI_COMMIT_REF_NAME"
# policy: push
# needs: [buildGUI]
# dependencies:
# - buildGUI
# only:
# refs:
# - master
# - stable
#
#publishCLI:
# variables:
# GRADLE_OPTS: "-Dorg.gradle.daemon=false"
# stage: publish-app
# when: manual
# script:
# - cd maven_artifacts/$VSNAP
# - curl -u $ARTIFACTORY_USERNAME:$ARTIFACTORY_TOKEN -X PUT "https://bio.informatik.uni-jena.de/repository/dist-snapshot-local/de/unijena/bioinf/ms/siriusMS/$VSNAP/siriusMS-$VSNAP-linux64-headless.zip" -T siriusMS-$VSNAP-linux64-headless.zip
# - curl -u $ARTIFACTORY_USERNAME:$ARTIFACTORY_TOKEN -X PUT "https://bio.informatik.uni-jena.de/repository/dist-snapshot-local/de/unijena/bioinf/ms/siriusMS/$VSNAP/siriusMS-$VSNAP.pom" -T siriusMS-$VSNAP.pom
# cache:
# key: "$CI_COMMIT_REF_NAME"
# policy: push
# needs: [buildCLI, testCLI]
# dependencies:
# - buildCLI
# only:
# refs:
# - master
# - stable
#
#publishGUI:
# variables:
# GRADLE_OPTS: "-Dorg.gradle.daemon=false"
# stage: publish-app
# when: manual
# script:
# - cd maven_artifacts/$VSNAP
# - curl -u $ARTIFACTORY_USERNAME:$ARTIFACTORY_TOKEN -X PUT "https://bio.informatik.uni-jena.de/repository/dist-snapshot-local/de/unijena/bioinf/ms/siriusMS/$VSNAP/siriusMS-$VSNAP-linux64.zip" -T siriusMS-$VSNAP-linux64.zip
# - curl -u $ARTIFACTORY_USERNAME:$ARTIFACTORY_TOKEN -X PUT "https://bio.informatik.uni-jena.de/repository/dist-snapshot-local/de/unijena/bioinf/ms/siriusMS/$VSNAP/siriusMS-$VSNAP.pom" -T siriusMS-$VSNAP.pom
# cache:
# key: "$CI_COMMIT_REF_NAME"
# policy: push
# needs: [buildGUI, testGUI]
# dependencies:
# - buildGUI
# only:
# refs:
# - master
# - stable
#
##push to github to build for multiple OSs
#pushToGitHub:
# stage: publish-app
# when: manual
# 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 [email protected]:sirius-ms/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]
# only:
# refs:
# - stable
# - master