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 }}