From 44265f0eed4983abade3c45815eb6b77c03fc320 Mon Sep 17 00:00:00 2001 From: asonix Date: Wed, 7 Feb 2024 15:22:17 -0600 Subject: [PATCH] Zigbuild rather than check --- .forgejo/workflows/check.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/check.yaml b/.forgejo/workflows/check.yaml index 65747ae..caa6cec 100644 --- a/.forgejo/workflows/check.yaml +++ b/.forgejo/workflows/check.yaml @@ -57,7 +57,7 @@ jobs: name: Install rustup and rust uses: https://github.com/dtolnay/rust-toolchain@1.75.0 with: - targets: x86_64-unknown-linux-musl,armv7-unknown-linux-musleabihf,aarch64-unknown-linux-musl + targets: ${{ matrix.target }} - name: Install cargo-binstall uses: https://github.com/taiki-e/install-action@v2 @@ -72,5 +72,5 @@ jobs: name: Install cargo-zigbuild run: yes | cargo binstall cargo-zigbuild - - name: Check - run: cargo check --target ${{ matrix.target }} + name: Debug builds + run: cargo zigbuild --debug --target ${{ matrix.target }}