2019-03-16 19:25:18 +00:00
|
|
|
kind: pipeline
|
|
|
|
name: default
|
2019-02-05 20:28:37 +00:00
|
|
|
|
2019-03-16 19:33:40 +00:00
|
|
|
workspace:
|
|
|
|
base: /go
|
|
|
|
path: src/p83.nl/go/wiki
|
|
|
|
|
2019-03-16 19:25:18 +00:00
|
|
|
steps:
|
|
|
|
- name: testing
|
2020-05-12 18:04:33 +00:00
|
|
|
image: golang:1.13-alpine
|
2019-03-16 19:25:18 +00:00
|
|
|
commands:
|
2019-03-16 19:35:34 +00:00
|
|
|
- export GOPATH=/go
|
2019-03-16 19:53:12 +00:00
|
|
|
- export CGO_ENABLED=0
|
2019-03-16 19:52:05 +00:00
|
|
|
- apk --no-cache add git
|
2019-03-16 19:37:37 +00:00
|
|
|
- go get -d -t ./...
|
2019-03-16 19:35:34 +00:00
|
|
|
- go build ./...
|
2019-03-16 19:25:18 +00:00
|
|
|
- go test ./...
|
|
|
|
|
2020-05-07 12:30:47 +00:00
|
|
|
# - name: restore-cache
|
|
|
|
# image: drillster/drone-volume-cache
|
|
|
|
# volumes:
|
|
|
|
# - name: cache
|
|
|
|
# path: /cache
|
|
|
|
# settings:
|
|
|
|
# restore: true
|
|
|
|
# file: node-cache.tar
|
|
|
|
# mount:
|
|
|
|
# - ./editor/node_modules
|
2019-08-25 10:43:44 +00:00
|
|
|
|
|
|
|
- name: build-node
|
|
|
|
image: node
|
|
|
|
group: build
|
|
|
|
commands:
|
2020-10-25 14:52:39 +00:00
|
|
|
- cd list-editor
|
|
|
|
- npm install
|
|
|
|
- cd ../editor
|
2019-08-25 10:43:44 +00:00
|
|
|
- npm install
|
|
|
|
- npm run docker
|
|
|
|
|
2020-05-07 12:30:47 +00:00
|
|
|
# - name: rebuild-cache
|
|
|
|
# image: drillster/drone-volume-cache
|
|
|
|
# volumes:
|
|
|
|
# - name: cache
|
|
|
|
# path: /cache
|
|
|
|
# settings:
|
|
|
|
# rebuild: true
|
|
|
|
# file: node-cache.tar
|
|
|
|
# mount:
|
|
|
|
# - ./editor/node_modules
|
2019-08-25 10:43:44 +00:00
|
|
|
|
2019-03-16 19:25:18 +00:00
|
|
|
- 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
|
|
|
|
|
2019-08-25 10:52:38 +00:00
|
|
|
# - name: notify
|
|
|
|
# image: plugins/webhook
|
|
|
|
# settings:
|
|
|
|
# debug: true
|
|
|
|
# secrets:
|
|
|
|
# - source: result_webhook
|
|
|
|
# target: plugin_urls
|
2019-08-25 10:43:44 +00:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
host:
|
|
|
|
path: /tmp
|