2019-03-28 08:53:55 +01:00
|
|
|
image: silex/emacs:26.1-alpine-dev
|
|
|
|
|
|
|
|
stages:
|
2019-08-20 09:21:12 +02:00
|
|
|
- pre-package-multifile
|
2019-08-24 08:00:43 +02:00
|
|
|
- test
|
2019-03-28 08:53:55 +01:00
|
|
|
- package
|
|
|
|
- deploy
|
|
|
|
|
2019-08-24 08:00:43 +02:00
|
|
|
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/
|
|
|
|
|
2019-08-23 08:52:43 +02:00
|
|
|
test-oni-alert:
|
|
|
|
stage: test
|
|
|
|
script: make test-oni-alert
|
|
|
|
|
2019-03-28 08:53:55 +01:00
|
|
|
test-oni-bookmark:
|
|
|
|
stage: test
|
2019-08-24 07:10:47 +02:00
|
|
|
script: make test-oni-bookmark
|
2019-03-28 08:53:55 +01:00
|
|
|
|
2019-08-24 08:00:43 +02:00
|
|
|
test-oni-conf:
|
|
|
|
stage: test
|
|
|
|
dependencies:
|
|
|
|
- package-oni-conf
|
|
|
|
needs: [package-oni-conf]
|
|
|
|
script: make test-oni-conf
|
|
|
|
|
2019-08-23 08:52:43 +02:00
|
|
|
test-oni-css:
|
2019-03-28 08:53:55 +01:00
|
|
|
stage: test
|
2019-08-24 07:10:47 +02:00
|
|
|
script: make test-oni-css
|
2019-03-28 08:53:55 +01:00
|
|
|
|
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
|
2019-08-24 07:10:47 +02:00
|
|
|
script: make test-oni-php
|
2019-05-06 05:06:34 +02:00
|
|
|
|
2019-03-28 08:53:55 +01:00
|
|
|
package:
|
|
|
|
stage: package
|
2019-08-20 09:21:12 +02:00
|
|
|
dependencies:
|
|
|
|
- package-oni-conf
|
2019-03-28 08:53:55 +01:00
|
|
|
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:
|
2019-08-20 08:33:10 +02:00
|
|
|
- chmod 600 "$DEPLOY_KEY"
|
2019-03-28 08:53:55 +01:00
|
|
|
- apk update && apk add rsync
|
|
|
|
script:
|
2019-08-20 08:33:10 +02:00
|
|
|
- rsync -e "ssh -o \"UserKnownHostsFile $KNOWN_HOSTS\" -p 4511 -i $DEPLOY_KEY" -v -c -r --delete bin/ "elpa@ryuslash.org:"
|