Add .drone.yml for CI

This commit is contained in:
nemunaire 2020-09-01 14:31:28 +02:00
parent 7f45286cf2
commit a268ca7f9a
1 changed files with 25 additions and 0 deletions

25
.drone.yml Normal file
View File

@ -0,0 +1,25 @@
---
kind: pipeline
type: docker
name: default
platform:
os: linux
arch: arm64
steps:
- name: frontend
image: node:alpine
commands:
- apk --no-cache add python2 build-base
- yarn config set network-timeout 100000
- yarn --cwd htdocs install
- yarn --cwd htdocs --offline build
- name: backend
image: golang:alpine
commands:
- apk --no-cache add go-bindata
- sed -i '/yarn --cwd htdocs --offline build/d' static.go
- go generate
- go build