Skip to content

Commit

Permalink
gh-actions: remove --clean-buildtrees-after-build option
Browse files Browse the repository at this point in the history
  • Loading branch information
luncliff committed Mar 7, 2025
1 parent 8516a94 commit 9f5bf18
Showing 1 changed file with 16 additions and 24 deletions.
40 changes: 16 additions & 24 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,8 @@ jobs:
if: runner.os == 'macOS'
run: |
vcpkg install --keep-going \
--clean-buildtrees-after-build --clean-packages-after-build \
--x-manifest-root test \
--x-feature test
--clean-packages-after-build \
--x-manifest-root test --x-feature test
shell: bash
env:
VCPKG_DEFAULT_TRIPLET: "x64-osx"
Expand All @@ -100,9 +99,8 @@ jobs:
if: runner.os == 'macOS'
run: |
vcpkg install --keep-going \
--clean-buildtrees-after-build --clean-packages-after-build \
--x-manifest-root test \
--x-feature test
--clean-packages-after-build \
--x-manifest-root test --x-feature test
shell: bash
env:
VCPKG_DEFAULT_TRIPLET: "arm64-ios"
Expand All @@ -111,9 +109,8 @@ jobs:
if: runner.os == 'macOS'
run: |
vcpkg install --keep-going \
--clean-buildtrees-after-build --clean-packages-after-build \
--x-manifest-root test \
--x-feature test
--clean-packages-after-build \
--x-manifest-root test --x-feature test
shell: bash
env:
VCPKG_DEFAULT_TRIPLET: "arm64-ios-simulator"
Expand All @@ -123,9 +120,8 @@ jobs:
if: runner.os == 'Linux'
run: |
vcpkg install --keep-going \
--clean-buildtrees-after-build --clean-packages-after-build \
--x-manifest-root test \
--x-feature test
--clean-packages-after-build \
--x-manifest-root test --x-feature test
shell: bash
env:
VCPKG_DEFAULT_TRIPLET: "x64-linux"
Expand All @@ -134,9 +130,8 @@ jobs:
if: runner.os == 'Windows'
run: |
vcpkg install --keep-going `
--clean-buildtrees-after-build --clean-packages-after-build `
--x-manifest-root test `
--x-feature test
--clean-packages-after-build `
--x-manifest-root test --x-feature test
shell: pwsh
env:
VCPKG_DEFAULT_TRIPLET: "x64-windows"
Expand All @@ -145,9 +140,8 @@ jobs:
if: runner.os == 'Windows'
run: |
vcpkg install --keep-going `
--clean-buildtrees-after-build --clean-packages-after-build `
--x-manifest-root test `
--x-feature test
--clean-packages-after-build `
--x-manifest-root test --x-feature test
shell: pwsh
env:
VCPKG_DEFAULT_TRIPLET: "arm64-windows"
Expand Down Expand Up @@ -235,9 +229,8 @@ jobs:
- name: "Run vcpkg(arm64-android)"
run: |
vcpkg install --keep-going \
--clean-buildtrees-after-build --clean-packages-after-build \
--x-manifest-root test \
--x-feature test
--clean-packages-after-build \
--x-manifest-root test --x-feature test
shell: bash
env:
VCPKG_BINARY_SOURCES: "${{ secrets.VCPKG_BINARY_SOURCES }}"
Expand All @@ -248,9 +241,8 @@ jobs:
- name: "Run vcpkg(x64-android)"
run: |
vcpkg install --keep-going \
--clean-buildtrees-after-build --clean-packages-after-build \
--x-manifest-root test \
--x-feature test
--clean-packages-after-build \
--x-manifest-root test --x-feature test
shell: bash
env:
VCPKG_BINARY_SOURCES: "${{ secrets.VCPKG_BINARY_SOURCES }}"
Expand Down

0 comments on commit 9f5bf18

Please sign in to comment.