From 714f2c6ef7edbc5d78fcaebfc60034dbe0c7c465 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Thu, 28 Mar 2019 00:53:55 -0700 Subject: Add GitLab CI/CD settings --- .gitlab-ci.yml | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .gitlab-ci.yml (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..e001702 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,38 @@ +image: silex/emacs:26.1-alpine-dev + +stages: + - test + - package + - deploy + +test-oni-bookmark: + stage: test + script: make test-oni-bookmark + +test-oni-alert: + stage: test + script: make test-oni-alert + +package: + stage: package + before_script: + - rm -rf bin/ + - mkdir bin/ + script: make package + artifacts: + paths: + - bin/ + +deploy-oni-bookmark: + 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: + - rsync -v -c -r --delete bin/ elpa@ryuslash.org:usr/share/emacs/elpa -- cgit v1.2.3-54-g00ecf