mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-19 04:49:47 -07:00
commit
96295adc08
3 changed files with 9 additions and 4 deletions
2
.github/workflows/ci_macos.yaml
vendored
2
.github/workflows/ci_macos.yaml
vendored
|
@ -52,7 +52,7 @@ jobs:
|
||||||
store_cache: ${{ github.ref == 'refs/heads/master' }}
|
store_cache: ${{ github.ref == 'refs/heads/master' }}
|
||||||
update_packager_index: false
|
update_packager_index: false
|
||||||
ccache_options: |
|
ccache_options: |
|
||||||
max_size=2G
|
max_size=1G
|
||||||
|
|
||||||
- name: Install boost
|
- name: Install boost
|
||||||
env:
|
env:
|
||||||
|
|
2
.github/workflows/ci_ubuntu.yaml
vendored
2
.github/workflows/ci_ubuntu.yaml
vendored
|
@ -47,7 +47,7 @@ jobs:
|
||||||
store_cache: ${{ github.ref == 'refs/heads/master' }}
|
store_cache: ${{ github.ref == 'refs/heads/master' }}
|
||||||
update_packager_index: false
|
update_packager_index: false
|
||||||
ccache_options: |
|
ccache_options: |
|
||||||
max_size=2G
|
max_size=1G
|
||||||
|
|
||||||
- name: Install boost
|
- name: Install boost
|
||||||
env:
|
env:
|
||||||
|
|
9
.github/workflows/ci_windows.yaml
vendored
9
.github/workflows/ci_windows.yaml
vendored
|
@ -67,6 +67,7 @@ jobs:
|
||||||
"set(VCPKG_BUILD_TYPE release)")
|
"set(VCPKG_BUILD_TYPE release)")
|
||||||
# clear buildtrees after each package installation to reduce disk space requirements
|
# clear buildtrees after each package installation to reduce disk space requirements
|
||||||
$packages = `
|
$packages = `
|
||||||
|
"boost-build:x64-windows-static-md-release",
|
||||||
"openssl:x64-windows-static-md-release",
|
"openssl:x64-windows-static-md-release",
|
||||||
"zlib:x64-windows-static-md-release"
|
"zlib:x64-windows-static-md-release"
|
||||||
${{ env.vcpkg_path }}/vcpkg.exe upgrade `
|
${{ env.vcpkg_path }}/vcpkg.exe upgrade `
|
||||||
|
@ -95,8 +96,12 @@ jobs:
|
||||||
}
|
}
|
||||||
move "${{ github.workspace }}/../boost_*" "${{ env.boost_path }}"
|
move "${{ github.workspace }}/../boost_*" "${{ env.boost_path }}"
|
||||||
cd "${{ env.boost_path }}"
|
cd "${{ env.boost_path }}"
|
||||||
.\bootstrap.bat
|
#.\bootstrap.bat
|
||||||
.\b2.exe stage --stagedir=.\ --with-headers
|
${{ env.vcpkg_path }}/installed/x64-windows-static-md-release/tools/boost-build/b2.exe `
|
||||||
|
stage `
|
||||||
|
toolset=msvc `
|
||||||
|
--stagedir=.\ `
|
||||||
|
--with-headers
|
||||||
|
|
||||||
- name: Install Qt
|
- name: Install Qt
|
||||||
uses: jurplel/install-qt-action@v4
|
uses: jurplel/install-qt-action@v4
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue