From 19da2ea46ea0ee427c7e5e4b8cc088cc41eb1422 Mon Sep 17 00:00:00 2001 From: Floris Bruynooghe Date: Wed, 15 Jan 2025 11:56:21 +0100 Subject: [PATCH] Do not test all features This test takes forever and we run out of disk space doing it. This is a problem for upstream to handle, we're fine if things work for us. --- .github/workflows/rust.yml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 3c5c3ef66..a46fb4888 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -285,18 +285,3 @@ jobs: api-level: ${{ matrix.api-level }} arch: ${{ matrix.emulator-arch }} script: .github/workflows/rust-android-run-tests-on-emulator.sh - - features: - strategy: - matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - runs-on: ${{ matrix.os }} - env: - RUSTFLAGS: -Dwarnings - # skip FIPS features outside of Linux - SKIP_FEATURES: ${{ matrix.os != 'ubuntu-latest' && 'rustls-aws-lc-rs-fips,aws-lc-rs-fips' || '' }} - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@stable - - uses: taiki-e/install-action@cargo-hack - - run: cargo hack check --feature-powerset --optional-deps --no-dev-deps --ignore-unknown-features --ignore-private --group-features runtime-async-std,async-io,async-std --group-features runtime-smol,async-io,smol --skip "${{env.SKIP_FEATURES}}"