From 18d271d6d2c40b763251253326558b210a5552c7 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Tue, 29 Aug 2023 05:29:01 +0900 Subject: [PATCH] ci: Use --no-private instead of --ignore-private --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7d079031..42c72963 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -82,9 +82,10 @@ jobs: RUSTDOCFLAGS: ${{ env.RUSTDOCFLAGS }} -Z randomize-layout RUSTFLAGS: ${{ env.RUSTFLAGS }} -Z randomize-layout if: startsWith(matrix.rust, 'nightly') + - run: cargo hack build --workspace --no-private --feature-powerset --no-dev-deps - run: cargo build --manifest-path tests/no-std/Cargo.toml --target thumbv6m-none-eabi - run: cargo build --manifest-path tests/rust-2015/Cargo.toml --target thumbv6m-none-eabi - - run: cargo minimal-versions build --workspace --all-features --ignore-private + - run: cargo minimal-versions build --workspace --no-private --all-features miri: runs-on: ubuntu-latest