From d0b8138dc98b01ae6f7bdbc906ef26359d86fa7b Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Tue, 28 Jan 2025 04:54:12 +0000 Subject: [PATCH] Simplify CMake setup in GitHub Actions workflow Remove explicit CMake version setup and install CMake via apt-get instead --- .github/workflows/build.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7cabbf7..4e7f30f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,15 +16,10 @@ jobs: with: submodules: recursive - - name: Set up CMake - uses: jwlawson/actions-setup-cmake@v2 - with: - cmake-version: '3.16.x' - - name: Install Dependencies run: | sudo apt-get update - sudo apt-get install -y build-essential + sudo apt-get install -y build-essential cmake - name: Create build directory run: mkdir build