mirror of
https://github.com/bartvdbraak/keyweave.git
synced 2025-04-28 15:21: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:
|
matrix:
|
||||||
name:
|
name:
|
||||||
- linux-x86-64-gnu
|
- linux-x86-64-gnu
|
||||||
- linux-x86-64-musl
|
# - linux-x86-64-musl
|
||||||
- linux-armhf-gnu
|
- linux-armhf-gnu
|
||||||
- linux-arm64-gnu
|
- linux-arm64-gnu
|
||||||
- mac-x86-64
|
- mac-x86-64
|
||||||
- mac-arm64
|
- mac-arm64
|
||||||
|
- windows-gnu
|
||||||
include:
|
include:
|
||||||
- name: linux-x86-64-gnu
|
- name: linux-x86-64-gnu
|
||||||
os: ubuntu-20.04
|
os: ubuntu-20.04
|
||||||
|
@ -28,11 +29,11 @@ jobs:
|
||||||
cross: false
|
cross: false
|
||||||
experimental: false
|
experimental: false
|
||||||
|
|
||||||
- name: linux-x86-64-musl
|
# - name: linux-x86-64-musl
|
||||||
os: ubuntu-latest
|
# os: ubuntu-latest
|
||||||
target: x86_64-unknown-linux-musl
|
# target: x86_64-unknown-linux-musl
|
||||||
cross: true
|
# cross: true
|
||||||
experimental: false
|
# experimental: false
|
||||||
|
|
||||||
- name: linux-armhf-gnu
|
- name: linux-armhf-gnu
|
||||||
os: ubuntu-20.04
|
os: ubuntu-20.04
|
||||||
|
@ -58,6 +59,12 @@ jobs:
|
||||||
cross: true
|
cross: true
|
||||||
experimental: true
|
experimental: true
|
||||||
|
|
||||||
|
- name: windows-gnu
|
||||||
|
os: windows-latest
|
||||||
|
target: x86_64-pc-windows-gnu
|
||||||
|
cross: true
|
||||||
|
experimental: false
|
||||||
|
|
||||||
name: Binaries for ${{ matrix.name }}
|
name: Binaries for ${{ matrix.name }}
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
continue-on-error: ${{ matrix.experimental }}
|
continue-on-error: ${{ matrix.experimental }}
|
||||||
|
|
Loading…
Reference in a new issue