From 9db84f4c24af5230670d24f54fe3e1de14e29398 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A0=20Arrufat?= <1671644+arrufat@users.noreply.github.com> Date: Sat, 30 Apr 2022 10:49:57 +0900 Subject: [PATCH] Build ancillary tools on Windows (#2583) * Build ancillary tools on Windows * Fix dtoc name --- .github/workflows/build_cpp.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build_cpp.yml b/.github/workflows/build_cpp.yml index 9e86b7799..86743e4cf 100644 --- a/.github/workflows/build_cpp.yml +++ b/.github/workflows/build_cpp.yml @@ -111,6 +111,8 @@ jobs: run: cmake --build ${{ env.build_dir }} --config ${{ env.config }} --target dtest --parallel 4 - name: Test run: ${{ env.build_dir }}/${{ env.config }}/dtest.exe --runall -q + - name: Build ancillary tools + run: cmake --build ${{ env.build_dir }} --config ${{ env.config }} --target imglab htmlify dtoc --parallel 4 macos-latest: runs-on: 'macos-latest'