Skip to content

Commit 6e85eb2

Browse files
committed
Bring back man nuget
1 parent 6fa179a commit 6e85eb2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/static_analysis.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
env:
88
VCPKG_NUGET_USER: ${{secrets.VCPKG_NUGET_USER || github.repository_owner}}
99
VCPKG_NUGET_TOKEN: ${{secrets.VCPKG_NUGET_TOKEN || secrets.GITHUB_TOKEN}}
10+
VCPKG_MAN_NUGET_USER: ${{secrets.VCPKG_MAN_NUGET_USER}} # For forks to download pre-compiled dependencies from the Man repo
11+
VCPKG_MAN_NUGET_TOKEN: ${{secrets.VCPKG_MAN_NUGET_TOKEN}}
1012
steps:
1113
- name: Checkout Source
1214
uses: actions/checkout@v4
@@ -23,11 +25,11 @@
2325
sudo update-alternatives --set gcc /usr/bin/gcc-10
2426
2527
- name: Prepare C++ compilation env
26-
run: build_tooling/prep_cpp_build.sh
28+
run: . build_tooling/prep_cpp_build.sh
2729

2830
- name: Setup VCPKG cache
2931
run: |
30-
build_tooling/vcpkg_caching.sh
32+
. build_tooling/vcpkg_caching.sh
3133
echo -e "VCPKG_BINARY_SOURCES=$VCPKG_BINARY_SOURCES" | tee -a $GITHUB_ENV
3234
echo -e "VCPKG_ROOT=$PLATFORM_VCPKG_ROOT" | tee -a $GITHUB_ENV
3335

0 commit comments

Comments
 (0)