Skip to content
Merged
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
14 changes: 13 additions & 1 deletion .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Build and Deploy
on:
pull_request:
push:
branches:
- main
tags:
- 'v*'
workflow_dispatch:
Expand Down Expand Up @@ -36,12 +38,22 @@ jobs:
node-version: '20'

# ── System dependencies ────────────────────────────────────────────────
- name: Detect vcpkg version (Windows)
id: vcpkg-version
if: matrix.platform == 'win32'
shell: pwsh
run: |
$commit = git -C C:\vcpkg rev-parse HEAD
"commit=$commit" >> $env:GITHUB_OUTPUT

- name: Cache system dependencies (Windows)
if: matrix.platform == 'win32'
uses: actions/cache@v4
with:
path: C:\vcpkg-binary-cache
key: vcpkg-binary-cache-${{ runner.os }}-arrow-23.0.1
key: vcpkg-binary-cache-${{ runner.os }}-${{ steps.vcpkg-version.outputs.commit }}-arrow-x64-windows
restore-keys: |
vcpkg-binary-cache-${{ runner.os }}-

- name: Install system dependencies (Linux)
if: matrix.platform == 'linux'
Expand Down
Loading