From d74e54fb862f65a9f08212080530c76d9d386dad Mon Sep 17 00:00:00 2001 From: redstrate <54911369+redstrate@users.noreply.github.com> Date: Mon, 15 Feb 2021 19:54:21 -0500 Subject: [PATCH] Remove install cmake step --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd95151..bb11120 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,10 +8,10 @@ jobs: CXX: g++-9 steps: - uses: actions/checkout@v2 - - run: sudo apt-get install -y cmake - - run: mkdir -p build && cd build - - run: cmake .. - - run: make + - name: Configure + run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release + - name: Build + run: cmake --build build --target all -v windows: runs-on: windows-latest