ci(check): add more targets to the check workflow

This commit is contained in:
Adrian Groh 2023-03-24 18:59:40 +01:00
parent 375ae15fe6
commit 6d64176e6f
Signed by: Gobidev
GPG Key ID: 3AA3153E98B0D771

View File

@ -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