From 7b241eaa9bfa0a518df1c698eb12ed2999f5b7b8 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Wed, 22 Jul 2020 20:37:50 -0700 Subject: [PATCH] Update features set in CI. --- .github/workflows/main.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 19c08182b67..85589469101 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -61,16 +61,9 @@ jobs: if: matrix.os == 'ubuntu-latest' - run: rustup component add rustfmt || echo "rustfmt not available" - # Deny warnings on CI to avoid warnings getting into the codebase, and note - # the `force-system-lib-on-osx` which is intended to fix compile issues on - # OSX where compiling curl from source on OSX yields linker errors on Azure. - # - # Note that the curl issue is traced back to alexcrichton/curl-rust#279 - # where it looks like the OSX version we're actually running on is such that - # a symbol is emitted that's never worked. For now force the system library - # to be used to fix the link errors. - - run: cargo test --features 'deny-warnings curl/force-system-lib-on-osx' - - run: cargo test -p cargo-test-support + # Deny warnings on CI to avoid warnings getting into the codebase. + - run: cargo test --features 'deny-warnings' + - run: cargo test --features 'deny-warnings' -p cargo-test-support - run: cargo test -p cargo-platform resolver: