From 49b353dd94218ccaedf01189e67de5b37c064bb8 Mon Sep 17 00:00:00 2001 From: Jon Lamb Date: Tue, 11 Apr 2023 06:21:09 -0700 Subject: [PATCH] Fix CI for libs, again --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index caaf013..ead050a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,11 +21,11 @@ jobs: - name: Check working-directory: libraries/${{ matrix.library }} - run: cargo check --all-features + run: cargo check --all-features --target x86_64-unknown-linux-gnu - name: Clippy working-directory: libraries/${{ matrix.library }} - run: cargo clippy --all-features + run: cargo clippy --all-features --target x86_64-unknown-linux-gnu - name: Format working-directory: libraries/${{ matrix.library }} @@ -33,7 +33,7 @@ jobs: - name: Doc Generation working-directory: libraries/${{ matrix.library }} - run: cargo doc --workspace --bins --examples --all-features --no-deps + run: cargo doc --workspace --bins --examples --all-features --no-deps --target x86_64-unknown-linux-gnu test_libs: name: Test Libraries