Merge branch 'master' of gitlab.dukantic.fr:dukantic/polymusic
This commit is contained in:
30
.gitlab-ci.yml
Normal file
30
.gitlab-ci.yml
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
stages:
|
||||||
|
- build
|
||||||
|
|
||||||
|
build_linux:
|
||||||
|
stage: build
|
||||||
|
script:
|
||||||
|
- cargo build --release
|
||||||
|
- cp target/release/polymusic .
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- polymusic
|
||||||
|
- fonts/
|
||||||
|
- assets/
|
||||||
|
expire_in: 1 month
|
||||||
|
tags:
|
||||||
|
- linux
|
||||||
|
|
||||||
|
build_windows:
|
||||||
|
stage: build
|
||||||
|
script:
|
||||||
|
- cargo build --release --target x86_64-pc-windows-gnu
|
||||||
|
- cp target/x86_64-pc-windows-gnu/release/polymusic.exe .
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- polymusic.exe
|
||||||
|
- fonts/
|
||||||
|
- assets/
|
||||||
|
expire_in: 1 month
|
||||||
|
tags:
|
||||||
|
- windows
|
||||||
Reference in New Issue
Block a user