This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new bd8c6cc867 MINOR: [CI] Bump ccache version (#50306)
bd8c6cc867 is described below
commit bd8c6cc86749af8e70905ca3e20f5b81bfd8ab1a
Author: Antoine Pitrou <[email protected]>
AuthorDate: Wed Jul 1 03:29:04 2026 +0200
MINOR: [CI] Bump ccache version (#50306)
### Rationale for this change
Bump the hardcoded ccache version that we install on CI builds. This might
make builds faster if it allows more files to be cached.
### Are these changes tested?
By the corresponding CI builds.
### Are there any user-facing changes?
No.
Authored-by: Antoine Pitrou <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
.github/actions/odbc-windows/action.yml | 2 +-
.github/workflows/cpp_windows.yml | 2 +-
.github/workflows/matlab.yml | 2 +-
.github/workflows/python.yml | 4 ++--
.github/workflows/ruby.yml | 2 +-
ci/docker/cpp-jni.dockerfile | 2 +-
ci/docker/python-wheel-manylinux.dockerfile | 2 +-
7 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/.github/actions/odbc-windows/action.yml
b/.github/actions/odbc-windows/action.yml
index 153fccceef..8323f36446 100644
--- a/.github/actions/odbc-windows/action.yml
+++ b/.github/actions/odbc-windows/action.yml
@@ -38,7 +38,7 @@ runs:
- name: Install ccache
shell: bash
run: |
- ci/scripts/install_ccache.sh 4.12.1 /usr
+ ci/scripts/install_ccache.sh 4.13.6 /usr
- name: Setup ccache
shell: bash
run: |
diff --git a/.github/workflows/cpp_windows.yml
b/.github/workflows/cpp_windows.yml
index 9a5d4353bc..3010d89053 100644
--- a/.github/workflows/cpp_windows.yml
+++ b/.github/workflows/cpp_windows.yml
@@ -98,7 +98,7 @@ jobs:
- name: Install ccache
shell: bash
run: |
- ci/scripts/install_ccache.sh 4.12.1 /usr
+ ci/scripts/install_ccache.sh 4.13.6 /usr
- name: Setup ccache
shell: bash
run: |
diff --git a/.github/workflows/matlab.yml b/.github/workflows/matlab.yml
index ae04dc4081..a65279b780 100644
--- a/.github/workflows/matlab.yml
+++ b/.github/workflows/matlab.yml
@@ -152,7 +152,7 @@ jobs:
release: R2025b
- name: Install ccache
shell: bash
- run: ci/scripts/install_ccache.sh 4.6.3 /usr
+ run: ci/scripts/install_ccache.sh 4.13.6 /usr
- name: Setup ccache
shell: bash
run: ci/scripts/ccache_setup.sh
diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml
index 4ca1db9bba..a86db37c93 100644
--- a/.github/workflows/python.yml
+++ b/.github/workflows/python.yml
@@ -265,7 +265,7 @@ jobs:
if: ${{ !contains(github.event.pull_request.title, 'WIP') }}
timeout-minutes: 60
env:
- CCACHE_DIR: /ccache
+ CCACHE_DIR: C:/ccache
PYTHON_CMD: "py -3.13"
steps:
- name: Disable Crash Dialogs
@@ -289,7 +289,7 @@ jobs:
- name: Install ccache
shell: bash
run: |
- ci/scripts/install_ccache.sh 4.6.3 /usr
+ ci/scripts/install_ccache.sh 4.13.6 /usr
- name: Setup ccache
shell: bash
run: |
diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml
index 3a5983791f..fc3b3a16d8 100644
--- a/.github/workflows/ruby.yml
+++ b/.github/workflows/ruby.yml
@@ -411,7 +411,7 @@ jobs:
- name: Install ccache
shell: bash
run: |
- ci/scripts/install_ccache.sh 4.6.3 /usr
+ ci/scripts/install_ccache.sh 4.13.6 /usr
- name: Setup ccache
shell: bash
run: |
diff --git a/ci/docker/cpp-jni.dockerfile b/ci/docker/cpp-jni.dockerfile
index f856ec5123..5d1c3c6b45 100644
--- a/ci/docker/cpp-jni.dockerfile
+++ b/ci/docker/cpp-jni.dockerfile
@@ -54,7 +54,7 @@ COPY ci/scripts/install_ninja.sh arrow/ci/scripts/
RUN /arrow/ci/scripts/install_ninja.sh ${ninja} /usr/local
# Install ccache
-ARG ccache=4.1
+ARG ccache=4.13.6
COPY ci/scripts/install_ccache.sh arrow/ci/scripts/
RUN /arrow/ci/scripts/install_ccache.sh ${ccache} /usr/local
diff --git a/ci/docker/python-wheel-manylinux.dockerfile
b/ci/docker/python-wheel-manylinux.dockerfile
index 2d91a204e0..58e7ea533f 100644
--- a/ci/docker/python-wheel-manylinux.dockerfile
+++ b/ci/docker/python-wheel-manylinux.dockerfile
@@ -46,7 +46,7 @@ COPY ci/scripts/install_ninja.sh arrow/ci/scripts/
RUN /arrow/ci/scripts/install_ninja.sh ${ninja} /usr/local
# Install ccache
-ARG ccache=4.1
+ARG ccache=4.13.6
COPY ci/scripts/install_ccache.sh arrow/ci/scripts/
RUN /arrow/ci/scripts/install_ccache.sh ${ccache} /usr/local