From 7009080014c65aeef4616d5fd9c2459c916e2e7a Mon Sep 17 00:00:00 2001 From: Davis King Date: Fri, 29 Apr 2022 22:04:37 -0400 Subject: [PATCH] Add a test on github actions that builds on windows in debug mode --- .github/workflows/build_cpp.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/build_cpp.yml b/.github/workflows/build_cpp.yml index 86743e4cf..4b58bbb49 100644 --- a/.github/workflows/build_cpp.yml +++ b/.github/workflows/build_cpp.yml @@ -114,6 +114,19 @@ jobs: - name: Build ancillary tools 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: runs-on: 'macos-latest' steps: