Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterPetrik committed Aug 4, 2023
1 parent b2976b3 commit a2f40ed
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand All @@ -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: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand All @@ -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
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand All @@ -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
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand All @@ -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
Expand Down

0 comments on commit a2f40ed

Please sign in to comment.