wowlet/.drone.yml

24 lines
418 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
2021-03-22 15:22:41 +00:00
image: wowlet/wowlet-linux:v0.1
commands:
2021-03-22 15:51:08 +00:00
- git submodule update --init --recursive
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:
2021-03-22 15:22:41 +00:00
- name: windows-build
image: wowlet/wowlet-win:v0.1
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
...