Update .gitlab-ci.yml file
This commit is contained in:
@@ -1,9 +1,28 @@
|
||||
build_job:
|
||||
stages:
|
||||
- build
|
||||
|
||||
build_linux:
|
||||
stage: build
|
||||
script:
|
||||
- cargo build --release
|
||||
artifacts:
|
||||
paths:
|
||||
- target/release/polygomusic.exe
|
||||
- target/release/polygomusic
|
||||
- fonts/
|
||||
- assets/
|
||||
expire_in: 1 month
|
||||
tags:
|
||||
- linux
|
||||
|
||||
build_windows:
|
||||
stage: build
|
||||
script:
|
||||
- cargo build --release --target x86_64-pc-windows-gnu
|
||||
artifacts:
|
||||
paths:
|
||||
- target/x86_64-pc-windows-gnu/release/polygomusic.exe
|
||||
- fonts/
|
||||
- assets/
|
||||
expire_in: 1 month
|
||||
tags:
|
||||
- windows
|
||||
|
||||
Reference in New Issue
Block a user