This commit is contained in:
MedzikUser 2022-01-23 20:52:18 +01:00
parent 754874388a
commit c2a2c20de2
No known key found for this signature in database
GPG Key ID: A5FAC1E185C112DB
2 changed files with 11 additions and 0 deletions

View File

@ -10,6 +10,7 @@ jobs:
matrix:
target:
- x86_64-unknown-linux-gnu
- x86_64-unknown-linux-musl
- x86_64-pc-windows-msvc
- x86_64-apple-darwin
include:
@ -21,6 +22,14 @@ jobs:
strip: true
compress: true
cargo_flags: ""
- os: ubuntu-latest
target: x86_64-unknown-linux-musl
artifact_name: target/x86_64-unknown-linux-musl/release/imgurs
release_name: x86_64-unknown-linux-musl
cross: true
strip: true
compress: true
cargo_flags: ""
- os: windows-latest
target: x86_64-pc-windows-msvc
artifact_name: target/x86_64-pc-windows-msvc/release/imgurs.exe

2
Cross.toml Normal file
View File

@ -0,0 +1,2 @@
[target.x86_64-unknown-linux-musl]
image = "rustembedded/cross:x86_64-unknown-linux-musl-0.1.16"