diff options
| author | Samuel Tardieu <sam@rfc1149.net> | 2025-04-01 19:33:30 +0200 |
|---|---|---|
| committer | Samuel Tardieu <sam@rfc1149.net> | 2025-04-01 19:34:15 +0200 |
| commit | d81396b7d0b7e196d729b506b31550f504d54f6f (patch) | |
| tree | 70c0d3a0540b4aba0a58487d6afc2e2279142117 | |
| parent | 227e43a860338a75d78834ead5cddf8eb3cf0062 (diff) | |
| download | rust-d81396b7d0b7e196d729b506b31550f504d54f6f.tar.gz rust-d81396b7d0b7e196d729b506b31550f504d54f6f.zip | |
Do not build `tokio-rustls` in the CI for the time being
A discrepancy between the `cmake` version available on the runners and the one required by the `aws-lc-sys` dependency prevents the crate from buiding.
| -rw-r--r-- | .github/workflows/lintcheck.yml | 8 | ||||
| -rw-r--r-- | lintcheck/ci_crates.toml | 3 |
2 files changed, 2 insertions, 9 deletions
diff --git a/.github/workflows/lintcheck.yml b/.github/workflows/lintcheck.yml index 4490f872b18..70c805903d3 100644 --- a/.github/workflows/lintcheck.yml +++ b/.github/workflows/lintcheck.yml @@ -49,10 +49,6 @@ jobs: path: target/debug/lintcheck key: lintcheck-bin-${{ hashfiles('lintcheck/**') }} - # Install cmake to build aws-lc-sys to build tokio-rustls - - name: Install cmake - run: sudo apt-get install -y cmake - - name: Build lintcheck if: steps.cache-lintcheck-bin.outputs.cache-hit != 'true' run: cargo build --manifest-path=lintcheck/Cargo.toml @@ -96,10 +92,6 @@ jobs: path: target/debug/lintcheck key: lintcheck-bin-${{ hashfiles('lintcheck/**') }} - # Install cmake to build aws-lc-sys to build tokio-rustls - - name: Install cmake - run: sudo apt-get install -y cmake - - name: Build lintcheck if: steps.cache-lintcheck-bin.outputs.cache-hit != 'true' run: cargo build --manifest-path=lintcheck/Cargo.toml diff --git a/lintcheck/ci_crates.toml b/lintcheck/ci_crates.toml index 6299823451d..55d99ebada3 100644 --- a/lintcheck/ci_crates.toml +++ b/lintcheck/ci_crates.toml @@ -122,7 +122,8 @@ winnow = { name = 'winnow', version = '0.6.13' } cpufeatures = { name = 'cpufeatures', version = '0.2.12' } nix = { name = 'nix', version = '0.29.0' } fnv = { name = 'fnv', version = '1.0.7' } -tokio-rustls = { name = 'tokio-rustls', version = '0.26.0' } +# As of 2025-04-01, one dependency doesn't build because of cmake version discrepancy +# tokio-rustls = { name = 'tokio-rustls', version = '0.26.0' } iana-time-zone = { name = 'iana-time-zone', version = '0.1.60' } rustls-webpki = { name = 'rustls-webpki', version = '0.102.5' } crc32fast = { name = 'crc32fast', version = '1.4.2' } |
