wowlet/.drone.yml

23 lines
358 B
YAML
Raw Normal View History

---
kind: pipeline
type: docker
2021-03-22 14:43:50 +00:00
name: linux-build
steps:
2021-03-22 14:43:50 +00:00
- name: linux-build
image: wowlet-linux:latest
commands:
2021-03-22 14:43:50 +00:00
- make release-static -j2
---
kind: pipeline
type: docker
2021-03-22 14:43:50 +00:00
name: windows-build
steps:
- name: build
2021-03-22 14:43:50 +00:00
image: wowlet-windows:latest
commands:
2021-03-22 14:43:50 +00:00
- make depends root=/depends target=x86_64-w64-mingw32 tag=win-x64 -j2
2020-12-08 21:03:04 +00:00
...