diff options
| author | Samuel Tardieu <sam@rfc1149.net> | 2025-04-01 16:06:28 +0200 |
|---|---|---|
| committer | Samuel Tardieu <sam@rfc1149.net> | 2025-04-01 16:11:54 +0200 |
| commit | 88c46eaf04a0abfdc68b78ff900dc3043af1b914 (patch) | |
| tree | 54fbabae840b1fb81249f9bdb2c1892eb3decb23 | |
| parent | d28d2344d000aa96bef729cf408731f952f71fb0 (diff) | |
| download | rust-88c46eaf04a0abfdc68b78ff900dc3043af1b914.tar.gz rust-88c46eaf04a0abfdc68b78ff900dc3043af1b914.zip | |
Install cmake to restore lintcheck run
| -rw-r--r-- | .github/workflows/lintcheck.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/lintcheck.yml b/.github/workflows/lintcheck.yml index 70c805903d3..4490f872b18 100644 --- a/.github/workflows/lintcheck.yml +++ b/.github/workflows/lintcheck.yml @@ -49,6 +49,10 @@ 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 @@ -92,6 +96,10 @@ 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 |
