File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 7
7
env :
8
8
VCPKG_NUGET_USER : ${{secrets.VCPKG_NUGET_USER || github.repository_owner}}
9
9
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}}
10
12
steps :
11
13
- name : Checkout Source
12
14
uses : actions/checkout@v4
23
25
sudo update-alternatives --set gcc /usr/bin/gcc-10
24
26
25
27
- name : Prepare C++ compilation env
26
- run : build_tooling/prep_cpp_build.sh
28
+ run : . build_tooling/prep_cpp_build.sh
27
29
28
30
- name : Setup VCPKG cache
29
31
run : |
30
- build_tooling/vcpkg_caching.sh
31
- echo -e "VCPKG_BINARY_SOURCES=$VCPKG_BINARY_SOURCES" | tee -a $GITHUB_ENV
32
- echo -e " VCPKG_ROOT=$PLATFORM_VCPKG_ROOT" | tee -a $GITHUB_ENV
32
+ . build_tooling/vcpkg_caching.sh
33
+ echo -e "VCPKG_BINARY_SOURCES=$VCPKG_BINARY_SOURCES
34
+ VCPKG_ROOT=$PLATFORM_VCPKG_ROOT" | tee -a $GITHUB_ENV
33
35
34
36
- name : Get CMake
35
37
uses : lukka/get-cmake@latest
You can’t perform that action at this time.
0 commit comments