aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: c6fddd6c993e71808e132414a8eaef19de4eca43 (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
image: silex/emacs:26.1-alpine-dev

stages:
  - pre-package-multifile
  - test
  - package
  - 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-elisp/dist
  script:
    - cask --path oni-haml package
  artifacts:
    paths:
      - oni-haml/dist/

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

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

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

test-oni-alert:
  stage: test
  script: make test-oni-alert

test-oni-bookmark:
  stage: test
  script: make test-oni-bookmark

test-oni-conf:
  stage: test
  dependencies:
    - package-oni-conf
  needs: [package-oni-conf]
  script: make test-oni-conf

test-oni-css:
  stage: test
  dependencies:
    - package-oni-css
  needs: [package-oni-css]
  script: make test-oni-css

test-oni-elisp:
  stage: test
  dependencies:
    - package-oni-elisp
  needs: [package-oni-elisp]
  script: make test-oni-elisp

test-oni-grep:
  stage: test
  script: make test-oni-grep

test-oni-highlight-indent-guides:
  stage: test
  script: make test-oni-highlight-indent-guides

test-oni-php:
  stage: test
  dependencies:
    - package-oni-php
  needs: [package-oni-php]
  script: make test-oni-php

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

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