From 7b1d9641d91e065a8c4c3f9cec0e9398916cc054 Mon Sep 17 00:00:00 2001 From: Michael Baikov Date: Tue, 24 Sep 2024 06:28:26 -0400 Subject: [PATCH] .github: remove --all-features from tests --- .cirrus.yml | 6 +++--- .github/actions/test/action.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 69126a13ef..aad234d62a 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -30,7 +30,7 @@ test: &TEST << : *BUILD test_script: - . $HOME/.cargo/env || true - - $TOOL test --target $TARGET --all-features + - $TOOL test --target $TARGET # Test FreeBSD in a full VM. Test the i686 target too, in the # same VM. The binary will be built in 32-bit mode, but will execute on a @@ -57,9 +57,9 @@ task: << : *TEST i386_test_script: - . $HOME/.cargo/env - - cargo build --target i686-unknown-freebsd --all-features + - cargo build --target i686-unknown-freebsd - cargo doc --no-deps --target i686-unknown-freebsd --all-features - - cargo test --target i686-unknown-freebsd --all-features + - cargo test --target i686-unknown-freebsd i386_feature_script: - . $HOME/.cargo/env - if [ -z "$NOHACK" ]; then cargo hack check --each-feature --target i686-unknown-freebsd; fi diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml index e4b7ea455f..31a6fd7aa6 100644 --- a/.github/actions/test/action.yml +++ b/.github/actions/test/action.yml @@ -29,4 +29,4 @@ runs: - name: test shell: bash - run: ${{ inputs.SUDO }} $(which ${{ inputs.TOOL }}) test --target ${{ inputs.TARGET }} --all-features + run: ${{ inputs.SUDO }} $(which ${{ inputs.TOOL }}) test --target ${{ inputs.TARGET }}