From d37edc01556494e680784d66edaa38bfa1c95063 Mon Sep 17 00:00:00 2001 From: AnonymusRaccoon Date: Thu, 23 Jan 2020 10:35:46 +0100 Subject: [PATCH] Cmake binary seems a bit buggy on github --- .github/workflows/build.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2c37cb0..5730d74 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Build Makefile with CMake - run: mkdir -p build && cmake -S . -B build + run: cmake -B build -S . - name: Build with Makefile run: make -C build ComSquare - name: Archive production artifact diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3ad80bc..e2ef75c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: - name: Install Gcovr run: python -m pip install --upgrade pip gcovr - name: Build Makefile with CMake - run: mkdir -p build && cmake -S . -B build + run: cmake -B build -S . - name: Build with Makefile run: make -C build unit_tests - name: Execute tests