mirror of
https://github.com/bartvdbraak/keyweave.git
synced 2025-04-28 07:11:21 +00:00
feat: add windows, disable musl
This commit is contained in:
parent
c9a1f79786
commit
97f6ac6da9
1 changed files with 13 additions and 6 deletions
19
.github/workflows/target-tests.yml
vendored
19
.github/workflows/target-tests.yml
vendored
|
@ -16,11 +16,12 @@ jobs:
|
|||
matrix:
|
||||
name:
|
||||
- linux-x86-64-gnu
|
||||
- linux-x86-64-musl
|
||||
# - linux-x86-64-musl
|
||||
- linux-armhf-gnu
|
||||
- linux-arm64-gnu
|
||||
- mac-x86-64
|
||||
- mac-arm64
|
||||
- windows-gnu
|
||||
include:
|
||||
- name: linux-x86-64-gnu
|
||||
os: ubuntu-20.04
|
||||
|
@ -28,11 +29,11 @@ jobs:
|
|||
cross: false
|
||||
experimental: false
|
||||
|
||||
- name: linux-x86-64-musl
|
||||
os: ubuntu-latest
|
||||
target: x86_64-unknown-linux-musl
|
||||
cross: true
|
||||
experimental: false
|
||||
# - name: linux-x86-64-musl
|
||||
# os: ubuntu-latest
|
||||
# target: x86_64-unknown-linux-musl
|
||||
# cross: true
|
||||
# experimental: false
|
||||
|
||||
- name: linux-armhf-gnu
|
||||
os: ubuntu-20.04
|
||||
|
@ -57,6 +58,12 @@ jobs:
|
|||
target: aarch64-apple-darwin
|
||||
cross: true
|
||||
experimental: true
|
||||
|
||||
- name: windows-gnu
|
||||
os: windows-latest
|
||||
target: x86_64-pc-windows-gnu
|
||||
cross: true
|
||||
experimental: false
|
||||
|
||||
name: Binaries for ${{ matrix.name }}
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
|
Loading…
Reference in a new issue