2019-03-28 08:53:55 +01:00
|
|
|
image: silex/emacs:26.1-alpine-dev
|
|
|
|
|
|
|
|
stages:
|
|
|
|
- test
|
|
|
|
- package
|
|
|
|
- deploy
|
|
|
|
|
|
|
|
test-oni-bookmark:
|
|
|
|
stage: test
|
2019-03-29 04:19:07 +01:00
|
|
|
script: make test-oni-bookmark DEPS="oni-data-dir"
|
2019-03-28 08:53:55 +01:00
|
|
|
|
|
|
|
test-oni-alert:
|
|
|
|
stage: test
|
|
|
|
script: make test-oni-alert
|
|
|
|
|
2019-03-29 04:26:04 +01:00
|
|
|
test-oni-grep:
|
|
|
|
stage: test
|
|
|
|
script: make test-oni-grep
|
|
|
|
|
2019-05-05 09:03:04 +02:00
|
|
|
test-oni-highlight-indent-guides:
|
|
|
|
stage: test
|
|
|
|
script: make test-oni-highlight-indent-guides
|
|
|
|
|
2019-05-06 05:06:34 +02:00
|
|
|
test-oni-php:
|
|
|
|
stage: test
|
|
|
|
script: make test-oni-php DEPS="oni-flycheck oni-company oni-fci"
|
|
|
|
|
2019-03-28 08:53:55 +01:00
|
|
|
package:
|
|
|
|
stage: package
|
|
|
|
before_script:
|
|
|
|
- rm -rf bin/
|
|
|
|
- mkdir bin/
|
|
|
|
script: make package
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- bin/
|
|
|
|
|
2019-04-17 07:05:27 +02:00
|
|
|
deploy:
|
2019-03-28 08:53:55 +01:00
|
|
|
stage: deploy
|
|
|
|
dependencies:
|
|
|
|
- package
|
|
|
|
before_script:
|
|
|
|
- mkdir ~/.ssh/
|
|
|
|
- echo "$DEPLOY_KEY" > ~/.ssh/id_rsa
|
|
|
|
- chmod 600 ~/.ssh/id_rsa
|
|
|
|
- echo -e "$SSH_CONFIG" > ~/.ssh/config
|
|
|
|
- echo "$KNOWN_HOSTS" > ~/.ssh/known_hosts
|
|
|
|
- apk update && apk add rsync
|
|
|
|
script:
|
2019-04-18 09:16:44 +02:00
|
|
|
- rsync -v -c -r --delete bin/ "elpa@ryuslash.org:"
|