From 0703324015bcc00ff86701dfc663e5e9d0afcc5c Mon Sep 17 00:00:00 2001 From: Urs Ritzmann Date: Mon, 18 Oct 2021 15:50:31 +0200 Subject: [PATCH] ci: update make commands to cmake --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 72b6d50..fa91906 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,9 +60,9 @@ jobs: - name: make run: | cd build - make -j2 + cmake --build . -j2 - name: verify run: | cd build - sudo make install + sudo cmake --build . --target install ctest