diff --git a/.github/workflows/pull-requests_build-check.yml b/.github/workflows/pull-requests_build-check.yml index f8c11834..0b9d5f7b 100644 --- a/.github/workflows/pull-requests_build-check.yml +++ b/.github/workflows/pull-requests_build-check.yml @@ -136,9 +136,9 @@ jobs: # REQUIRED: Specify the required boost version # A list of supported versions can be found here: # https://github.com/actions/boost-versions/blob/main/versions-manifest.json - boost_version: 1.72.0 - # OPTIONAL: Specify a custon install location - #boost_install_dir: 'C:' + boost_version: 1.77.0 + # OPTIONAL: Specify a custom install location + boost_install_dir: 'C:' # OPTIONAL: Specify a platform version platform_version: 2019 @@ -153,9 +153,13 @@ jobs: run: | mkdir sunshine-windows-build && cd sunshine-windows-build set PATH=C:\msys64\mingw64\bin - set BOOST_ROOT=${{ steps.install-boost.outputs.BOOST_ROOT }} - set BOOST_INCLUDEDIR=${{ steps.install-boost.outputs.BOOST_ROOT }} - set BOOST_LIBRARYDIR=${{ steps.install-boost.outputs.BOOST_ROOT }}\lib + set BOOST_ROOT=C:\boost + dir C:\boost + echo ----------- + set BOOST_INCLUDEDIR=C:\boost + set BOOST_LIBRARYDIR=C:\boost\lib + dir C:\boost\lib + echo ----------- cmake -DCMAKE_BUILD_TYPE=Release -DSUNSHINE_ASSETS_DIR=assets -G "MinGW Makefiles" .. mingw32-make -j2 - name: Package Windows