aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: d1cd2ccd60c893cff732a0df4865e0b34bd399b6 (plain)
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
image: silex/emacs:26.3-alpine-dev

stages:
  - pre-package-multifile
  - package
  - unit-test
  - integration-test
  - deploy

package-oni-conf:
  stage: pre-package-multifile
  before_script:
    - rm -rf oni-conf/dist
  script:
    - cask --path oni-conf package
  artifacts:
    paths:
      - oni-conf/dist/

package-oni-css:
  stage: pre-package-multifile
  before_script:
    - rm -rf oni-css/dist
  script:
    - cask --path oni-css package
  artifacts:
    paths:
      - oni-css/dist/

package-oni-elisp:
  stage: pre-package-multifile
  before_script:
    - rm -rf oni-elisp/dist
  script:
    - cask --path oni-elisp package
  artifacts:
    paths:
      - oni-elisp/dist/

package-oni-haml:
  stage: pre-package-multifile
  before_script:
    - rm -rf oni-haml/dist
  script:
    - cask --path oni-haml package
  artifacts:
    paths:
      - oni-haml/dist/

package-oni-html:
  stage: pre-package-multifile
  before_script:
    - rm -rf oni-html/dist
  script:
    - cask --path oni-html package
  artifacts:
    paths:
      - oni-html/dist/

package-oni-nxml:
  stage: pre-package-multifile
  before_script:
    - rm -rf oni-nxml/dist
  script:
    - cask --path oni-nxml package
  artifacts:
    paths:
      - oni-nxml/dist/

package-oni-org:
  stage: pre-package-multifile
  before_script:
    - rm -rf oni-org/dist
  script:
    - cask --path oni-org package
  artifacts:
    paths:
      - oni-org/dist/

package-oni-php:
  stage: pre-package-multifile
  before_script:
    - rm -rf oni-php/dist
  script:
    - cask --path oni-php package
  artifacts:
    paths:
      - oni-php/dist/

package-oni-python:
  stage: pre-package-multifile
  before_script:
    - rm -rf oni-python/dist
  script:
    - cask --path oni-python package
  artifacts:
    paths:
      - oni-python/dist/

package-oni-ruby:
  stage: pre-package-multifile
  before_script:
    - rm -rf oni-ruby/dist
  script:
    - cask --path oni-ruby package
  artifacts:
    paths:
      - oni-ruby/dist/

package-oni-twig:
  stage: pre-package-multifile
  before_script:
    - rm -rf oni-twig/dist
  script:
    - cask --path oni-twig package
  artifacts:
    paths:
      - oni-twig/dist/

package-oni-csharp:
  stage: pre-package-multifile
  before_script:
    - rm -rf oni-csharp/dist
  script:
    - cask --path oni-csharp package
  artifacts:
    paths:
      - oni-csharp/dist/

package:
  stage: package
  dependencies:
    - package-oni-conf
    - package-oni-css
    - package-oni-elisp
    - package-oni-haml
    - package-oni-html
    - package-oni-nxml
    - package-oni-org
    - package-oni-php
    - package-oni-python
    - package-oni-ruby
    - package-oni-twig
    - package-oni-csharp
  before_script:
    - rm -rf bin/
    - mkdir bin/
  script: make package
  artifacts:
    paths:
      - bin/

unit-test-oni-alert:
  stage: unit-test
  dependencies:
    - package
  script: make unit-test-oni-alert TEST_ARCHIVE=$(realpath bin/)

unit-test-oni-bookmark:
  stage: unit-test
  dependencies:
    - package
  script: make unit-test-oni-bookmark TEST_ARCHIVE=$(realpath bin/)

unit-test-oni-conf:
  stage: unit-test
  dependencies:
    - package
  script: make unit-test-oni-conf TEST_ARCHIVE=$(realpath bin/)

unit-test-oni-css:
  stage: unit-test
  dependencies:
    - package
  script: make unit-test-oni-css TEST_ARCHIVE=$(realpath bin/)

unit-test-oni-elisp:
  stage: unit-test
  dependencies:
    - package
  script: make unit-test-oni-elisp TEST_ARCHIVE=$(realpath bin/)

unit-test-oni-grep:
  stage: unit-test
  dependencies:
    - package
  script: make unit-test-oni-grep TEST_ARCHIVE=$(realpath bin/)

unit-test-oni-highlight-indent-guides:
  stage: unit-test
  dependencies:
    - package
  script: make unit-test-oni-highlight-indent-guides TEST_ARCHIVE=$(realpath bin/)

unit-test-oni-org:
  stage: unit-test
  dependencies:
    - package
  script: make unit-test-oni-org TEST_ARCHIVE=$(realpath bin/)

unit-test-oni-php:
  stage: unit-test
  dependencies:
    - package
  script: make unit-test-oni-php TEST_ARCHIVE=$(realpath bin/)

integration-test-oni-alert:
  stage: integration-test
  image: registry.gitlab.com/ryuslash/emacs-config
  dependencies:
    - package
  script: make integration-test-oni-alert TEST_ARCHIVE=$(realpath bin/)

integration-test-oni-autohotkey:
  stage: integration-test
  image: registry.gitlab.com/ryuslash/emacs-config
  dependencies:
    - package
  script: make integration-test-oni-autohotkey TEST_ARCHIVE=$(realpath bin/)

integration-test-oni-bats:
  stage: integration-test
  image: registry.gitlab.com/ryuslash/emacs-config
  dependencies:
    - package
  script: make integration-test-oni-bats TEST_ARCHIVE=$(realpath bin/)

integration-test-oni-conf:
  stage: integration-test
  image: registry.gitlab.com/ryuslash/emacs-config
  dependencies:
    - package
  script: make integration-test-oni-conf TEST_ARCHIVE=$(realpath bin/)

integration-test-oni-csharp:
  stage: integration-test
  image: registry.gitlab.com/ryuslash/emacs-config
  dependencies:
    - package
  script: make integration-test-oni-csharp TEST_ARCHIVE=$(realpath bin/)

integration-test-oni-bookmark:
  stage: integration-test
  image: registry.gitlab.com/ryuslash/emacs-config
  dependencies:
    - package
  script: make integration-test-oni-bookmark TEST_ARCHIVE=$(realpath bin/)

integration-test-oni-browse-url:
  stage: integration-test
  image: registry.gitlab.com/ryuslash/emacs-config
  dependencies:
    - package
  script: make integration-test-oni-browse-url TEST_ARCHIVE=$(realpath bin/)

integration-test-oni-cpp:
  stage: integration-test
  image: registry.gitlab.com/ryuslash/emacs-config
  dependencies:
    - package
  script: make integration-test-oni-cpp TEST_ARCHIVE=$(realpath bin/)

integration-test-oni-docker:
  stage: integration-test
  image: registry.gitlab.com/ryuslash/emacs-config
  dependencies:
    - package
  script: make integration-test-oni-docker TEST_ARCHIVE=$(realpath bin/)

integration-test-oni-json:
  stage: integration-test
  image: registry.gitlab.com/ryuslash/emacs-config
  dependencies:
    - package
  script: make integration-test-oni-json TEST_ARCHIVE=$(realpath bin/)

integration-test-oni-prescient:
  stage: integration-test
  image: registry.gitlab.com/ryuslash/emacs-config
  dependencies:
    - package
  script: make integration-test-oni-prescient TEST_ARCHIVE=$(realpath bin/)

integration-test-oni-scheme:
  stage: integration-test
  image: registry.gitlab.com/ryuslash/emacs-config
  dependencies:
    - package
  script: make integration-test-oni-scheme TEST_ARCHIVE=$(realpath bin/)

deploy:
  only:
    - master
  stage: deploy
  image: instrumentisto/rsync-ssh
  dependencies:
    - package
  before_script:
    - chmod 600 "$DEPLOY_KEY"
  script:
    - rsync -e "ssh -o \"UserKnownHostsFile $KNOWN_HOSTS\" -p 4511 -i $DEPLOY_KEY" -v -c -r --delete bin/ "elpa@ryuslash.org:"