Commit 70090800 authored by Davis King's avatar Davis King
Browse files

Add a test on github actions that builds on windows in debug mode

parent 9db84f4c
...@@ -114,6 +114,19 @@ jobs: ...@@ -114,6 +114,19 @@ jobs:
- name: Build ancillary tools - name: Build ancillary tools
run: cmake --build ${{ env.build_dir }} --config ${{ env.config }} --target imglab htmlify dtoc --parallel 4 run: cmake --build ${{ env.build_dir }} --config ${{ env.config }} --target imglab htmlify dtoc --parallel 4
windows-latest-debug:
runs-on: 'windows-latest'
steps:
- uses: actions/checkout@v2
- name: Configure
run: cmake . -B ${{ env.build_dir }}
- name: Build just tests
run: cmake --build ${{ env.build_dir }} --config Debug --target dtest --parallel 4
- name: Build ancillary tools
run: cmake --build ${{ env.build_dir }} --config Debug --target imglab htmlify dtoc --parallel 4
- name: Build everything else
run: cmake --build ${{ env.build_dir }} --config Debug
macos-latest: macos-latest:
runs-on: 'macos-latest' runs-on: 'macos-latest'
steps: steps:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment