You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wowlet/.drone.yml

23 lines
358 B

---
kind: pipeline
type: docker
3 years ago
name: linux-build
steps:
3 years ago
- name: linux-build
image: wowlet-linux:latest
commands:
3 years ago
- make release-static -j2
---
kind: pipeline
type: docker
3 years ago
name: windows-build
steps:
- name: build
3 years ago
image: wowlet-windows:latest
commands:
3 years ago
- make depends root=/depends target=x86_64-w64-mingw32 tag=win-x64 -j2
...