From 5651cd1eeb2f9a27ac6f85790a9631389f7f1d09 Mon Sep 17 00:00:00 2001 From: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com> Date: Wed, 18 Sep 2024 13:24:38 -0700 Subject: [PATCH] debug --- .github/workflows/build-cpp.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-cpp.yml b/.github/workflows/build-cpp.yml index f0ba2b28f..573626674 100644 --- a/.github/workflows/build-cpp.yml +++ b/.github/workflows/build-cpp.yml @@ -59,7 +59,10 @@ jobs: if: runner.os == 'Windows' run: | $env:Path += ";C:\msys64\usr\bin" # msys64 is preinstalled, but not in path by default - pacman -S mingw-w64-x86_64-nlohmann-json mingw-w64-x86_64-boost --noconfirm + pacman -S base-devel \ + mingw-w64-ucrt-x86_64-toolchain \ + mingw-w64-x86_64-nlohmann-json \ + mingw-w64-x86_64-boost --noconfirm # - name: Cache vcpkg # if: runner.os == 'Windows' @@ -166,6 +169,8 @@ jobs: export DNLOHMANN_PATH="C:\msys64\mingw64\include\nlohmann" export DBOOST_PATH="C:\msys64\mingw64\include\boost" export DTARGET="include/bitwarden_c.dll" + ls $DNLOHMANN_PATH/json.hpp || { echo "Missing json.hpp"; exit 1; } + ls $DBOOST_PATH/optional.hpp || { echo "Missing boost"; exit 1; } cmake .. -DNLOHMANN=$DNLOHMANN_PATH -DBOOST=$DBOOST_PATH -DTARGET=$DTARGET cmake --build . shell: bash