From c9219e671c2a4f83b51c2bc6557ea663ae9b69d0 Mon Sep 17 00:00:00 2001 From: Bart van der Braak Date: Tue, 7 Nov 2023 10:10:24 +0100 Subject: [PATCH] feat: build targets for windows, linux, mac-arm --- .github/workflows/deploy.yml | 40 ++++++++++++------------------------ 1 file changed, 13 insertions(+), 27 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f64420b..5906873 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,36 +11,16 @@ jobs: strategy: matrix: name: - # - linux-x86-64-gnu - # - linux-x86-64-musl - # - linux-armhf-gnu - # - linux-arm64-gnu + - linux-x86-64-gnu - mac-x86-64 - mac-arm64 + - windows-gnu include: - # - name: linux-x86-64-gnu - # os: ubuntu-20.04 - # target: x86_64-unknown-linux-gnu - # cross: false - # 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 - # target: armv7-unknown-linux-gnueabihf - # cross: true - # experimental: false - - # - name: linux-arm64-gnu - # os: ubuntu-20.04 - # target: aarch64-unknown-linux-gnu - # cross: true - # experimental: false + - name: linux-x86-64-gnu + os: ubuntu-20.04 + target: x86_64-unknown-linux-gnu + cross: false + experimental: false - name: mac-x86-64 os: macos-latest @@ -53,6 +33,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 }}