From cb64b66214e24735442d92d20d6d7bf71110b71a Mon Sep 17 00:00:00 2001 From: Vittorio Parrella Date: Tue, 26 Mar 2024 23:55:09 +0100 Subject: [PATCH] fix perf. workflow --- .github/workflows/common-performance.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/common-performance.yml b/.github/workflows/common-performance.yml index 6286da8f..e8fcfa70 100644 --- a/.github/workflows/common-performance.yml +++ b/.github/workflows/common-performance.yml @@ -70,6 +70,9 @@ jobs: with: go-version: 1.20.14 + - name: Setup Git for Windows' minimal SDK + uses: git-for-windows/setup-git-for-windows-sdk@v1 + - name: Prepare shell: powershell run: | @@ -95,8 +98,8 @@ jobs: set GOHOSTARCH=amd64 set GOHOSTOS=windows cd backend/ - "C:\Program Files\Git\bin\git.exe" submodule init quicly-go - "C:\Program Files\Git\bin\git.exe" submodule update --init --recursive + git.exe submodule init quicly-go + git.exe submodule update --init --recursive go generate - name: Build Client