Auto merge of #11257 - arlosi:build-deadlock-1.65.0, r=weihanglo #1133
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches-ignore: [master] | |
pull_request: | |
branches: ['*'] | |
defaults: | |
run: | |
shell: bash | |
permissions: | |
contents: read | |
jobs: | |
# Check Code style quickly by running `rustfmt` over all code | |
rustfmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rustup update stable && rustup default stable | |
- run: rustup component add rustfmt | |
- run: cargo fmt --all --check | |
- run: | | |
for manifest in `find crates benches/benchsuite benches/capture -name Cargo.toml` | |
do | |
echo check fmt for $manifest | |
cargo fmt --all --manifest-path $manifest --check | |
done | |
test: | |
runs-on: ${{ matrix.os }} | |
env: | |
CARGO_PROFILE_DEV_DEBUG: 1 | |
CARGO_PROFILE_TEST_DEBUG: 1 | |
CARGO_INCREMENTAL: 0 | |
strategy: | |
matrix: | |
include: | |
- name: Linux x86_64 stable | |
os: ubuntu-latest | |
rust: stable | |
other: i686-unknown-linux-gnu | |
- name: Linux x86_64 beta | |
os: ubuntu-latest | |
rust: beta | |
other: i686-unknown-linux-gnu | |
- name: Linux x86_64 nightly | |
os: ubuntu-latest | |
rust: nightly | |
other: i686-unknown-linux-gnu | |
- name: macOS x86_64 stable | |
os: macos-latest | |
rust: stable | |
other: x86_64-apple-ios | |
- name: Windows x86_64 MSVC stable | |
os: windows-latest | |
rust: stable-msvc | |
other: i686-pc-windows-msvc | |
- name: Windows x86_64 gnu nightly | |
os: windows-latest | |
rust: nightly-gnu | |
other: i686-pc-windows-gnu | |
name: Tests ${{ matrix.name }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Dump Environment | |
run: ci/dump-environment.sh | |
- name: Update Rustup (temporary workaround) | |
run: rustup self update | |
shell: bash | |
if: startsWith(matrix.os, 'windows') | |
- run: rustup update --no-self-update ${{ matrix.rust }} && rustup default ${{ matrix.rust }} | |
- run: rustup target add ${{ matrix.other }} | |
- run: rustup component add rustc-dev llvm-tools-preview rust-docs | |
if: startsWith(matrix.rust, 'nightly') | |
- run: sudo apt update -y && sudo apt install gcc-multilib libsecret-1-0 libsecret-1-dev -y | |
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. | |
- run: cargo test --features 'deny-warnings' | |
- name: Check operability of rustc invocation with argfile | |
env: | |
__CARGO_TEST_FORCE_ARGFILE: 1 | |
run: | | |
# This only tests `cargo fix` because fix-proxy-mode is one of the most | |
# complicated subprocess management in Cargo. | |
cargo test --test testsuite --features 'deny-warnings' -- fix:: | |
- run: cargo test --features 'deny-warnings' --manifest-path crates/cargo-test-support/Cargo.toml | |
env: | |
CARGO_TARGET_DIR: target | |
- run: cargo test -p cargo-platform | |
- run: cargo test -p cargo-util | |
- run: cargo test --manifest-path crates/mdman/Cargo.toml | |
- run: cargo build --manifest-path crates/credential/cargo-credential-1password/Cargo.toml | |
- run: cargo build --manifest-path crates/credential/cargo-credential-gnome-secret/Cargo.toml | |
if: matrix.os == 'ubuntu-latest' | |
- run: cargo build --manifest-path crates/credential/cargo-credential-macos-keychain/Cargo.toml | |
if: matrix.os == 'macos-latest' | |
- run: cargo build --manifest-path crates/credential/cargo-credential-wincred/Cargo.toml | |
if: matrix.os == 'windows-latest' | |
- name: Check benchmarks | |
env: | |
# Share the target dir to try to cache a few build-time deps. | |
CARGO_TARGET_DIR: target | |
run: | | |
# This only tests one benchmark since it can take over 10 minutes to | |
# download all workspaces. | |
cargo test --manifest-path benches/benchsuite/Cargo.toml --all-targets -- cargo | |
cargo check --manifest-path benches/capture/Cargo.toml | |
# The testsuite generates a huge amount of data, and fetch-smoke-test was | |
# running out of disk space. | |
- name: Clear test output | |
run: | | |
df -h | |
rm -rf target/tmp | |
df -h | |
- name: Fetch smoke test | |
run: ci/fetch-smoke-test.sh | |
resolver: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rustup update stable && rustup default stable | |
- run: cargo test --manifest-path crates/resolver-tests/Cargo.toml | |
build_std: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rustup update nightly && rustup default nightly | |
- run: rustup component add rust-src | |
- run: cargo build | |
- run: cargo test --test build-std | |
env: | |
CARGO_RUN_BUILD_STD_TESTS: 1 | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rustup update nightly && rustup default nightly | |
- run: rustup update stable | |
- run: rustup component add rust-docs | |
- run: ci/validate-man.sh | |
# This requires rustfmt, use stable. | |
- run: cd src/doc/semver-check && cargo +stable run | |
- run: | | |
mkdir mdbook | |
curl -Lf https://github.com/rust-lang/mdBook/releases/download/v0.4.5/mdbook-v0.4.5-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=./mdbook | |
echo `pwd`/mdbook >> $GITHUB_PATH | |
- run: cargo doc --document-private-items --no-deps | |
env: | |
RUSTDOCFLAGS: -D warnings | |
- run: cd src/doc && mdbook build --dest-dir ../../target/doc | |
- run: | | |
cd src/doc | |
curl -sSLo linkcheck.sh \ | |
https://raw.githubusercontent.com/rust-lang/rust/master/src/tools/linkchecker/linkcheck.sh | |
sh linkcheck.sh --all cargo | |
success: | |
permissions: | |
contents: none | |
name: bors build finished | |
needs: [docs, rustfmt, test, resolver, build_std] | |
runs-on: ubuntu-latest | |
if: "success() && github.event_name == 'push' && github.ref == 'refs/heads/auto-cargo'" | |
steps: | |
- run: echo ok | |
failure: | |
permissions: | |
contents: none | |
name: bors build finished | |
needs: [docs, rustfmt, test, resolver, build_std] | |
runs-on: ubuntu-latest | |
if: "!success() && github.event_name == 'push' && github.ref == 'refs/heads/auto-cargo'" | |
steps: | |
- run: exit 1 |