From 7e8c49f7035a29d18633cafcb6c914f772fcb40b Mon Sep 17 00:00:00 2001 From: Vasil Pashov Date: Wed, 16 Oct 2024 12:28:50 +0300 Subject: [PATCH] Prepare C++ compilation env --- .github/workflows/static_analysis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/static_analysis.yml b/.github/workflows/static_analysis.yml index 8ba92c3263..c18fd29e32 100644 --- a/.github/workflows/static_analysis.yml +++ b/.github/workflows/static_analysis.yml @@ -7,7 +7,7 @@ env: VCPKG_NUGET_USER: ${{secrets.VCPKG_NUGET_USER || github.repository_owner}} VCPKG_NUGET_TOKEN: ${{secrets.VCPKG_NUGET_TOKEN || secrets.GITHUB_TOKEN}} - VCPKG_MAN_NUGET_USER: ${{secrets.VCPKG_MAN_NUGET_USER}} # For forks to download pre-compiled dependencies from the Man repo + VCPKG_MAN_NUGET_USER: ${{secrets.VCPKG_MAN_NUGET_USER}} VCPKG_MAN_NUGET_TOKEN: ${{secrets.VCPKG_MAN_NUGET_TOKEN}} steps: - name: Checkout Source @@ -27,6 +27,9 @@ echo -e "VCPKG_BINARY_SOURCES=$VCPKG_BINARY_SOURCES VCPKG_ROOT=$PLATFORM_VCPKG_ROOT" | tee -a $GITHUB_ENV + - name: Prepare C++ compilation env + run: . build_tooling/prep_cpp_build.sh + - name: Get CMake uses: lukka/get-cmake@latest