ci(release): build binaries for gnu instead of musl

Musl currently doesn't support dylib.
This commit is contained in:
MedzikUser 2022-08-20 14:48:41 +02:00
parent d15ec0c93e
commit 212223c568
No known key found for this signature in database
GPG Key ID: A5FAC1E185C112DB
1 changed files with 8 additions and 12 deletions

View File

@ -17,8 +17,8 @@ jobs:
matrix:
target:
- x86_64-unknown-linux-musl
- aarch64-unknown-linux-musl
- x86_64-unknown-linux-gnu
- aarch64-unknown-linux-gnu
- x86_64-pc-windows-msvc
- x86_64-apple-darwin
- aarch64-apple-darwin
@ -26,16 +26,16 @@ jobs:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-musl
artifact_name: target/x86_64-unknown-linux-musl/release/servers
release_name: x86_64-unknown-linux-musl
target: x86_64-unknown-linux-gnu
artifact_name: target/x86_64-unknown-linux-gnu/release/servers
release_name: x86_64-unknown-linux-gnu
cross: true
cargo_flags: ""
- os: ubuntu-latest
target: aarch64-unknown-linux-musl
artifact_name: target/aarch64-unknown-linux-musl/release/servers
release_name: aarch64-unknown-linux-musl
target: aarch64-unknown-linux-gnu
artifact_name: target/aarch64-unknown-linux-gnu/release/servers
release_name: aarch64-unknown-linux-gnu
cross: true
cargo_flags: ""
@ -93,10 +93,6 @@ jobs:
name: ${{ matrix.target }}
path: ${{ matrix.artifact_name }}
###
# Below this line, steps will only be ran if a tag was pushed.
###
- name: Get tag name
id: tag_name
run: |