diff options
author | Sadie Powell <sadie@witchery.services> | 2023-06-03 21:58:13 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2023-06-03 22:02:49 +0100 |
commit | 1c30205af57dee259b2610fb4b2aadb4d4a06d61 (patch) | |
tree | ac3871dc2eb8261de86767ca63ec5a2f995cefe6 /.github | |
parent | 9d0a6ddc67b1e7bd0c32603b6fa90b702c13447d (diff) |
Also build the Windows dependencies in the CI.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci-windows.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml index a5a9d1ad7..66754ada0 100644 --- a/.github/workflows/ci-windows.yml +++ b/.github/workflows/ci-windows.yml @@ -13,6 +13,15 @@ jobs: - name: Setup MSBuild uses: microsoft/setup-msbuild@v1.3 + - name: Setup Conan + uses: turtlebrowser/get-conan@v1.2 + with: + version: 1.59.0 + + - name: Install libraries + run: | + conan install ${{ github.workspace }}\src\win32 --build=missing + - name: Run CMake run: | mkdir ${{ github.workspace }}\build |