diff --git a/.ci/compile.sh b/.ci/compile.sh index e028219f4..317eb7e1c 100755 --- a/.ci/compile.sh +++ b/.ci/compile.sh @@ -330,6 +330,12 @@ if [[ $MAKE_INSTALL ]]; then echo "::endgroup::" fi +if [[ $RUNNER_OS == Windows ]]; then + echo "::group::Find DLLs" + find vcpkg_installed -name "*.dll" + echo "::endgroup::" +fi + if [[ $MAKE_PACKAGE ]]; then echo "::group::Create package" cmake --build . --target package --config "$BUILDTYPE" diff --git a/.github/workflows/desktop-build.yml b/.github/workflows/desktop-build.yml index 67f3a2ace..ffade35be 100644 --- a/.github/workflows/desktop-build.yml +++ b/.github/workflows/desktop-build.yml @@ -425,6 +425,22 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: "[Windows] Debug PATH (bash)" + if: matrix.os == 'Windows' + shell: bash + run: | + where ninja + where cl + where link + + - name: "[Windows] Debug PATH (cmd)" + if: matrix.os == 'Windows' + shell: cmd + run: | + where ninja + where cl + where link + # Uses environment variables, see compile.sh for more details - name: "Build Cockatrice" id: build