musala/.drone.yml

30 lines
424 B
YAML
Raw Normal View History

2022-08-18 18:55:00 +00:00
---
kind: pipeline
type: docker
name: default
steps:
2022-08-18 19:25:18 +00:00
- name: Frontend
image: node:18
2022-08-18 19:29:28 +00:00
volumes:
- name: cache
path: /stupid
2022-08-18 19:25:18 +00:00
commands:
2022-08-18 19:29:28 +00:00
- pwd
2022-08-18 19:25:18 +00:00
- make build-templates
2022-08-18 18:55:00 +00:00
- name: Backend
image: golang:1.13
2022-08-18 19:29:28 +00:00
volumes:
- name: cache
path: /stupid
2022-08-18 18:55:00 +00:00
commands:
2022-08-18 19:29:28 +00:00
- pwd
- go get -v -t -d ./...
- make build-binaries
2022-08-18 18:55:00 +00:00
2022-08-18 19:29:28 +00:00
volumes:
- name: cache
temp: {}
2022-08-18 18:55:00 +00:00
#