From 85b24025b576a883e2693c80d52f40c93900a1d1 Mon Sep 17 00:00:00 2001 From: Jason Marechal Date: Tue, 25 Jul 2023 15:43:18 +0200 Subject: [PATCH] Try fix windows --- .github/workflows/windows-vcpkg.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows-vcpkg.yml b/.github/workflows/windows-vcpkg.yml index 1fe6245cf10..6cc7d5b0083 100644 --- a/.github/workflows/windows-vcpkg.yml +++ b/.github/workflows/windows-vcpkg.yml @@ -32,14 +32,16 @@ jobs: steps: - uses: actions/checkout@v3 - with: - submodules: true - name: Pre-requisites shell: cmd run: | choco install wget unzip zip --no-progress + - name : Init VCPKG submodule + run: | + git submodule update --init vcpkg + # Restore both vcpkg and its artifacts from the GitHub cache service. - name: Restore vcpkg and its artifacts. uses: actions/cache@v3 @@ -89,6 +91,10 @@ jobs: - name: Install pip dependencies if necessary run: pip install -r src/tests/examples/requirements.txt + - name: Init submodule + run: | + git submodule update --init --remote src/tests/resources/Antares_Simulator_Tests + - name: Enable git longpaths run: git config --system core.longpaths true