From 1a055ca70733280030a9d71e13a3d90bdb591f23 Mon Sep 17 00:00:00 2001 From: Coda Hale Date: Thu, 19 Oct 2023 13:31:29 -0600 Subject: [PATCH] ci(github): fix no_std build --- .github/workflows/rust.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index ea196346..992efb60 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -22,8 +22,7 @@ jobs: with: toolchain: ${{ matrix.rust }} targets: ${{ matrix.target }} - - uses: RustCrypto/actions/cargo-hack-install@master - - run: cargo hack build --target ${{ matrix.target }} --each-feature --exclude-features default,std,hedge,asm + - run: cargo build --target ${{ matrix.target }} --no-default-features --features portable test: runs-on: ubuntu-latest