From 97f6ac6da94de2c4453eabd1b07c99fd8d85873d Mon Sep 17 00:00:00 2001 From: Bart van der Braak Date: Mon, 6 Nov 2023 22:47:18 +0100 Subject: [PATCH] feat: add windows, disable musl --- .github/workflows/target-tests.yml | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/workflows/target-tests.yml b/.github/workflows/target-tests.yml index 1d61dae..b65308e 100644 --- a/.github/workflows/target-tests.yml +++ b/.github/workflows/target-tests.yml @@ -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 }}