mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
22 lines
372 B
YAML
22 lines
372 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: linux-build
|
|
|
|
steps:
|
|
- name: linux-build
|
|
image: wowlet/wowlet-linux:v0.1
|
|
commands:
|
|
- make release-static -j2
|
|
|
|
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: windows-build
|
|
steps:
|
|
- name: windows-build
|
|
image: wowlet/wowlet-win:v0.1
|
|
commands:
|
|
- make depends root=/depends target=x86_64-w64-mingw32 tag=win-x64 -j2
|
|
|
|
...
|