This commit is contained in:
parent
53ee8a8faf
commit
9dfa04fa01
1 changed files with 6 additions and 5 deletions
11
.drone.yml
11
.drone.yml
|
@ -4,15 +4,16 @@ type: docker
|
||||||
name: default
|
name: default
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Frontend
|
||||||
|
image: node:18
|
||||||
|
commands:
|
||||||
|
- make build-templates
|
||||||
|
|
||||||
- name: Backend
|
- name: Backend
|
||||||
image: golang:1.13
|
image: golang:1.13
|
||||||
commands:
|
commands:
|
||||||
- |
|
- |
|
||||||
go get -v -t -d ./...
|
go get -v -t -d ./...
|
||||||
if [ -f Gopkg.toml ]; then
|
- make build-binary
|
||||||
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
|
|
||||||
dep ensure
|
|
||||||
fi
|
|
||||||
- go build
|
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in a new issue