From a2f40ed2d3a5c09711c0f941895acfebd7b4e2f3 Mon Sep 17 00:00:00 2001 From: Peter Petrik Date: Fri, 4 Aug 2023 15:40:04 +0200 Subject: [PATCH] try --- .github/workflows/android.yml | 5 ++++- .github/workflows/ios.yml | 4 +++- .github/workflows/linux.yml | 4 +++- .github/workflows/mac.yml | 4 +++- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index d599d2cb..ddcf005e 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -95,7 +95,6 @@ jobs: set-env: false - name: Get vcpkg - if: steps.cache-vcpkg-restore.outputs.cache-hit != 'true' shell: bash run: | mkdir -p "${{ env.VCPKG_ROOT }}" @@ -105,9 +104,13 @@ jobs: git pull origin master git checkout $VCPKG_BASELINE + - name: Install vcpkg + run: | echo "install vcpkg" + cd "${{ env.VCPKG_ROOT }}" chmod +x ./bootstrap-vcpkg.sh ./bootstrap-vcpkg.sh + ./vcpkg --version - name: Build Deps run: | diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index f20e9f5f..6accbba6 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -66,7 +66,6 @@ jobs: set-env: false - name: Get vcpkg - if: steps.cache-vcpkg-restore.outputs.cache-hit != 'true' shell: bash run: | mkdir -p "${{ env.VCPKG_ROOT }}" @@ -76,7 +75,10 @@ jobs: git pull origin master git checkout $VCPKG_BASELINE + - name: Install vcpkg + run: | echo "install vcpkg" + cd "${{ env.VCPKG_ROOT }}" chmod +x ./bootstrap-vcpkg.sh ./bootstrap-vcpkg.sh ./vcpkg --version diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 2d66541e..df3b1468 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -49,7 +49,6 @@ jobs: dir: ${{ github.workspace }} - name: Get vcpkg - if: steps.cache-vcpkg-restore.outputs.cache-hit != 'true' shell: bash run: | mkdir -p "${{ env.VCPKG_ROOT }}" @@ -59,7 +58,10 @@ jobs: git pull origin master git checkout $VCPKG_BASELINE + - name: Install vcpkg + run: | echo "install vcpkg" + cd "${{ env.VCPKG_ROOT }}" chmod +x ./bootstrap-vcpkg.sh ./bootstrap-vcpkg.sh ./vcpkg --version diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 3ca01d1f..71e9fddb 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -56,7 +56,6 @@ jobs: xcode-version: ${{ env.XC_VERSION }} - name: Get vcpkg - if: steps.cache-vcpkg-restore.outputs.cache-hit != 'true' shell: bash run: | mkdir -p "${{ env.VCPKG_ROOT }}" @@ -66,7 +65,10 @@ jobs: git pull origin master git checkout $VCPKG_BASELINE + - name: Install vcpkg + run: | echo "install vcpkg" + cd "${{ env.VCPKG_ROOT }}" chmod +x ./bootstrap-vcpkg.sh ./bootstrap-vcpkg.sh ./vcpkg --version