about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2025-04-01 16:06:28 +0200
committerSamuel Tardieu <sam@rfc1149.net>2025-04-01 16:11:54 +0200
commit88c46eaf04a0abfdc68b78ff900dc3043af1b914 (patch)
tree54fbabae840b1fb81249f9bdb2c1892eb3decb23
parentd28d2344d000aa96bef729cf408731f952f71fb0 (diff)
downloadrust-88c46eaf04a0abfdc68b78ff900dc3043af1b914.tar.gz
rust-88c46eaf04a0abfdc68b78ff900dc3043af1b914.zip
Install cmake to restore lintcheck run
-rw-r--r--.github/workflows/lintcheck.yml8
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