-
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.
Only run
vcpkg integrate install
once
This sets up the global build environment by updating certain user files. It only needs to be run once per environment.
- Loading branch information
1 parent
97cbb88
commit 1fa8b8b
Showing
1 changed file
with
3 additions
and
2 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 |
---|---|---|
|
@@ -26,6 +26,9 @@ jobs: | |
- name: Add MSBuild to PATH | ||
uses: microsoft/[email protected] | ||
|
||
- name: Integrate vcpkg | ||
run: vcpkg integrate install | ||
|
||
- name: Export GitHub Actions cache environment variables | ||
uses: actions/github-script@v7 | ||
with: | ||
|
@@ -83,7 +86,6 @@ jobs: | |
# Add additional options to the MSBuild command line here (like platform or verbosity level). | ||
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference | ||
run: | | ||
vcpkg integrate install | ||
msbuild /maxCpuCount /warnAsError /property:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} /target:NAS2D | ||
- name: Save build cache - NAS2D | ||
|
@@ -135,7 +137,6 @@ jobs: | |
# Add additional options to the MSBuild command line here (like platform or verbosity level). | ||
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference | ||
run: | | ||
vcpkg integrate install | ||
msbuild /maxCpuCount /warnAsError /property:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} | ||
- name: Save incremental build cache - OPHD | ||
|