Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/actions/setup-vcpkg/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,21 @@ runs:
steps:
- name: Install vcpkg
shell: bash
env:
# Pin to the same commit as the vcpkg submodule and the Dockerfile
# (vcpkg tag 2026.04.27). Without this checkout the action lands on
# master HEAD, which drifts port-version ABI hashes and silently
# invalidates the binary archive cache between CI runs.
VCPKG_COMMIT: 56bb2411609227288b70117ead2c47585ba07713
run: |
if [ ! -d "$HOME/vcpkg" ]; then
# Full clone required — Arrow depends on Boost, which needs vcpkg git history
git clone https://github.com/microsoft/vcpkg.git "$HOME/vcpkg"
git -C "$HOME/vcpkg" checkout "$VCPKG_COMMIT"
"$HOME/vcpkg/bootstrap-vcpkg.sh" -disableMetrics
else
git -C "$HOME/vcpkg" fetch --quiet origin "$VCPKG_COMMIT" || true
git -C "$HOME/vcpkg" checkout "$VCPKG_COMMIT"
fi
Comment thread
JoshDreamland marked this conversation as resolved.
echo "VCPKG_ROOT=$HOME/vcpkg" >> "$GITHUB_ENV"
echo "$HOME/vcpkg" >> "$GITHUB_PATH"
Expand Down
3 changes: 2 additions & 1 deletion docker/postgres-ext.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ RUN apt-get update && apt-get install -y curl ca-certificates gnupg \

# Install vcpkg
# Pin to the same commit as the vcpkg submodule for reproducible builds
ARG VCPKG_COMMIT=12159785447291b4069c82a3fe9c2770a393ac7f
# (vcpkg tag 2026.04.27).
ARG VCPKG_COMMIT=56bb2411609227288b70117ead2c47585ba07713
RUN git clone https://github.com/microsoft/vcpkg.git /opt/vcpkg \
&& git -C /opt/vcpkg checkout "$VCPKG_COMMIT" \
&& /opt/vcpkg/bootstrap-vcpkg.sh -disableMetrics
Expand Down
2 changes: 1 addition & 1 deletion third_party/vcpkg
Submodule vcpkg updated 593 files
2 changes: 1 addition & 1 deletion vcpkg-configuration.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"default-registry": {
"kind": "builtin",
"baseline": "12159785447291b4069c82a3fe9c2770a393ac7f"
"baseline": "56bb2411609227288b70117ead2c47585ba07713"
},
"overlay-triplets": ["./triplets"],
"overlay-ports": ["./overlay-ports"]
Expand Down
Loading