From 6d64176e6f3d6d9b080ab0c56a317ac0571d94dd Mon Sep 17 00:00:00 2001 From: Adrian Groh Date: Fri, 24 Mar 2023 18:59:40 +0100 Subject: [PATCH] ci(check): add more targets to the check workflow --- .github/workflows/check.yml | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 1346b18..8efeaf2 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -11,8 +11,10 @@ jobs: matrix: target: - x86_64-unknown-linux-gnu - - x86_64-unknown-netbsd - - armv7-unknown-linux-gnueabihf + - x86_64-unknown-freebsd + - aarch64-linux-android + - x86_64-pc-windows-gnu + - x86_64-apple-darwin include: - os: ubuntu-latest @@ -22,17 +24,29 @@ jobs: strip: true - os: ubuntu-latest - name: NetBSD - target: x86_64-unknown-netbsd + name: FreeBSD + target: x86_64-unknown-freebsd cross: true strip: true - os: ubuntu-latest - name: Linux armv7 - target: armv7-unknown-linux-gnueabihf + name: Android + target: aarch64-linux-android cross: true strip: true + - os: windows-latest + name: Windows x86_64 + target: x86_64-pc-windows-gnu + cross: false + strip: true + + - os: macos-latest + name: macOS x86_64 + target: x86_64-apple-darwin + cross: false + strip: true + steps: - name: Checkout uses: actions/checkout@v2