Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update features set in CI. #8530

Merged
merged 1 commit into from
Jul 23, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 3 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down