diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 3de6fe084..a2516a613 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -64,7 +64,7 @@ jobs: $qt5_cmake = "${{ env.Qt5_Dir }}/lib/cmake" -replace '[/]', '\\' mkdir "$build_folder" cd "$build_folder" - Start-Process cmake -ArgumentList "-DBOOST_ROOT=""$env:BOOST_ROOT"" -DBoost_INCLUDE_DIR=""$env:BOOST_ROOT/include"" -G ""Visual Studio 16 2019"" -A x64 -DARCH=default",".." -NoNewWindow -Wait + Start-Process cmake -ArgumentList "-DBOOST_ROOT=""$env:BOOST_ROOT"" -DBOOST_INCLUDE_DIRS=""$env:BOOST_ROOT/include"" -G ""Visual Studio 16 2019"" -A x64 -DARCH=default",".." -NoNewWindow -Wait Start-Process msbuild -ArgumentList "KarbowanecWallet.sln","/p:Configuration=Release" -NoNewWindow -Wait $build_path = "./$build_folder" mkdir "$release_folder/$release_name" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8c776622d..155af4906 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,7 +59,7 @@ jobs: $qt5_cmake = "${{ env.Qt5_Dir }}/lib/cmake" -replace '[/]', '\\' mkdir "$build_folder" cd "$build_folder" - Start-Process cmake -ArgumentList "-DBOOST_ROOT=""$env:BOOST_ROOT"" -DBoost_INCLUDE_DIR=""$env:BOOST_ROOT/include"" -G ""Visual Studio 16 2019"" -A x64 -DARCH=default",".." -NoNewWindow -Wait + Start-Process cmake -ArgumentList "-DBOOST_ROOT=""$env:BOOST_ROOT"" -DBOOST_INCLUDE_DIRS=""$env:BOOST_ROOT/include"" -G ""Visual Studio 16 2019"" -A x64 -DARCH=default",".." -NoNewWindow -Wait Start-Process msbuild -ArgumentList "KarbowanecWallet.sln","/p:Configuration=Release" -NoNewWindow -Wait $build_path = "./$build_folder" echo "::set-output name=build_path::${build_path}"