diff --git a/.github/build.sh b/.github/build.sh index 76a9fa859..3766d9d29 100755 --- a/.github/build.sh +++ b/.github/build.sh @@ -72,9 +72,9 @@ if [[ -z ${BSH_NO_PACKAGES-} ]]; then if [[ $BSH_BUILD_PLATFORM-$BSH_HOST_LIBC == windows-mingw ]]; then pacman -S --noconfirm --needed mingw-w64-ucrt-x86_64-gcc if [[ $BSH_STATIC_DYNAMIC == static ]]; then - pacman -S --noconfirm --needed mingw-w64-ucrt-x86_64-{cmake,7zip} patch + pacman -S --noconfirm --needed mingw-w64-ucrt-x86_64-{cmake,7zip,jq} patch else - pacman -S --noconfirm --needed mingw-w64-ucrt-x86_64-{pkgconf,bzip2,luajit,jsoncpp,curl,SDL2,libpng,meson,fftw} + pacman -S --noconfirm --needed mingw-w64-ucrt-x86_64-{pkgconf,bzip2,luajit,jsoncpp,curl,SDL2,libpng,meson,fftw,jq} fi export PKG_CONFIG=$(which pkg-config.exe) fi diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 31848e308..7131e51c8 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -84,6 +84,7 @@ jobs: mingw-w64-ucrt-x86_64-fftw mingw-w64-ucrt-x86_64-cmake mingw-w64-ucrt-x86_64-7zip + mingw-w64-ucrt-x86_64-jq patch - run: git config --global core.autocrlf false - uses: actions/checkout@v4