Skip to content

Commit a7eb388

Browse files
committed
windows ci wip
1 parent a5cfbf3 commit a7eb388

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,3 +77,19 @@ jobs:
7777
make -j2
7878
ctest -j2 --output-on-failure
7979
80+
build:
81+
runs-on: windows-latest
82+
83+
steps:
84+
- name: Checkout code
85+
uses: actions/checkout@v2
86+
87+
- name: Install CMake
88+
run: choco install cmake --installargs '"ADD_CMAKE_TO_PATH=System"' --no-progress
89+
90+
- name: Configure CMake
91+
run: cmake -S . -B build
92+
93+
- name: Build
94+
run: cmake --build build --config Release
95+

0 commit comments

Comments
 (0)