windows ci wip

This commit is contained in:
gabime 2024-11-01 17:21:21 +02:00
parent a5cfbf369d
commit a7eb388f84

View File

@ -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