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

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

test-oni-bookmark:
  stage: test
  script: make test-oni-bookmark DEPS="oni-data-dir"

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

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
  script: make test-oni-php DEPS="oni-flycheck oni-company oni-fci"

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:
  stage: package
  dependencies:
    - package-oni-conf
  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:"