-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Limit the number of boost packages for win
- Loading branch information
Showing
1 changed file
with
1 addition
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,33 +38,10 @@ jobs: | |
uses: johnwason/vcpkg-action@v6 | ||
id: vcpkg | ||
with: | ||
pkgs: boost qwt qtbase | ||
pkgs: boost-regex boost-filesystem boost-program-options boost-system boost-thread boost-test boost-iostreams qwt qtbase | ||
triplet: x64-windows-release | ||
token: ${{ github.token }} | ||
github-binarycache: true | ||
# - name: "Installing vcpkg (windows)" | ||
# run: | | ||
# cd .. | ||
# git clone https://github.com/Microsoft/vcpkg.git | ||
# cd vcpkg | ||
# .\bootstrap-vcpkg.bat | ||
# .\vcpkg.exe update | ||
# .\vcpkg.exe install boost:x64-windows qt:x64-windows qwt:x64-windows | ||
# - name: Install Qt | ||
# uses: jurplel/install-qt-action@v3 | ||
# with: | ||
# version: '6.5.2' | ||
# - name: Install boost | ||
# uses: MarkusJx/[email protected] | ||
# id: install-boost | ||
# with: | ||
# boost_version: 1.84.0 | ||
# # OPTIONAL: Specify a custon install location | ||
# # boost_install_dir: C:\some_directory | ||
# # OPTIONAL: Specify a platform version | ||
# platform_version: 2019 | ||
# # OPTIONAL: Specify a toolset | ||
# toolset: msvc | ||
- name: Running cmake (windows) | ||
run: | | ||
cd ${{ github.workspace }} | ||
|