1
0
Fork 0
emacs-config/.gitlab-ci.yml

149 lines
2.7 KiB
YAML

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:"