chore: reducing vcpkg cache size by building and caching only release versions - #1608
Merged
Conversation
sachinpro
force-pushed
the
reducing_gha_cache_size
branch
from
July 24, 2026 01:37
6bf15ba to
557f9af
Compare
sachinpro
force-pushed
the
reducing_gha_cache_size
branch
from
July 24, 2026 02:07
557f9af to
ad33bad
Compare
sachinpro
force-pushed
the
reducing_gha_cache_size
branch
from
July 24, 2026 02:15
ad33bad to
18f56fd
Compare
sachinpro
force-pushed
the
reducing_gha_cache_size
branch
from
July 29, 2026 15:59
18f56fd to
d25903b
Compare
sachinpro
force-pushed
the
reducing_gha_cache_size
branch
from
August 14, 2026 22:51
d25903b to
d01fff6
Compare
sachinpro
force-pushed
the
reducing_gha_cache_size
branch
from
August 14, 2026 23:10
d01fff6 to
18ef524
Compare
sachinpro
force-pushed
the
reducing_gha_cache_size
branch
from
August 14, 2026 23:29
18ef524 to
d27f541
Compare
sachinpro
marked this pull request as ready for review
August 14, 2026 23:40
sachinpro
force-pushed
the
reducing_gha_cache_size
branch
2 times, most recently
from
August 15, 2026 00:10
dc7bd92 to
2a38a97
Compare
sachinpro
force-pushed
the
reducing_gha_cache_size
branch
from
August 15, 2026 01:02
2a38a97 to
bec8e4c
Compare
sachinpro
force-pushed
the
reducing_gha_cache_size
branch
from
August 15, 2026 01:04
bec8e4c to
fb026c2
Compare
sachinpro
force-pushed
the
reducing_gha_cache_size
branch
from
August 15, 2026 01:47
fb026c2 to
7f540e8
Compare
sachinpro
force-pushed
the
reducing_gha_cache_size
branch
from
August 15, 2026 03:41
7f540e8 to
fc80c1b
Compare
keshavdandeva
approved these changes
Aug 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
By default, vcpkg compiles and caches both Debug and Release configurations for every dependency specified in
vcpkg.json. Since CI pipelines and releases only require Release packages, building both doubles compilation time and consumes significant GitHub Actions cache and runner disk space (~10GB+ per runner).
This PR introduces custom overlay triplets for windows and macOS with
set(VCPKG_BUILD_TYPE release), reducing CI cache sizes by ~50% and speeding up dependency build and cache upload/download steps.