image: silex/emacs:26.1-alpine-dev stages: - test - 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: stage: package before_script: - rm -rf bin/ - mkdir bin/ script: make package artifacts: paths: - bin/ deploy: 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:"