wiki/.drone.yml
Peter Stuifzand 742f4c7e7e
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Use /cache directory
2021-02-02 23:00:04 +01:00

93 lines
1.8 KiB
YAML

kind: pipeline
name: default
workspace:
base: /go
path: src/p83.nl/go/wiki
steps:
- name: testing
image: golang:1.13-alpine
commands:
- export GOPATH=/go
- export CGO_ENABLED=0
- apk --no-cache add git
- go get -d -t ./...
- go build ./...
- go test ./...
- name: restore-cache-with-filesystem
image: meltwater/drone-cache:dev
pull: true
settings:
backend: "filesystem"
restore: true
cache_key: "volume"
archive_format: "gzip"
mount:
- './editor/node_modules'
volumes:
- name: cache
path: /tmp/cache
- name: build-node
image: node
group: build
commands:
- cd list-editor
- npm install
- cd ../editor
- npm install
- npm run docker
- name: rebuild-cache-with-filesystem
image: meltwater/drone-cache:dev
pull: true
settings:
backend: "filesystem"
rebuild: true
cache_key: "volume"
archive_format: "gzip"
# filesystem_cache_root: "/tmp/cache"
mount:
- './editor/node_modules'
volumes:
- name: cache
path: /tmp/cache
- name: publish
image: plugins/docker
settings:
repo: registry.stuifzandapp.com/wiki
registry: registry.stuifzandapp.com
username:
from_secret: docker_username
password:
from_secret: docker_password
- name: deploy
image: appleboy/drone-ssh
settings:
host: wiki.p83.nl
username: wiki
ssh_key:
from_secret: ssh_key
script:
- cd /home/wiki/wiki
- docker-compose pull web
- docker-compose up -d
# - name: notify
# image: plugins/webhook
# settings:
# debug: true
# secrets:
# - source: result_webhook
# target: plugin_urls
volumes:
- name: cache
host:
path: /cache