From a7eb388f845d5bc142af1ce6f01d2f3c48aec252 Mon Sep 17 00:00:00 2001 From: gabime Date: Fri, 1 Nov 2024 17:21:21 +0200 Subject: [PATCH] windows ci wip --- .github/workflows/ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bf8018a3..ed3cbb65 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,3 +77,19 @@ jobs: make -j2 ctest -j2 --output-on-failure + build: + runs-on: windows-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Install CMake + run: choco install cmake --installargs '"ADD_CMAKE_TO_PATH=System"' --no-progress + + - name: Configure CMake + run: cmake -S . -B build + + - name: Build + run: cmake --build build --config Release +