This is an automated email from the ASF dual-hosted git repository.

quinnj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-julia.git


The following commit(s) were added to refs/heads/main by this push:
     new d18877b  Fix verify RC CI (#551)
d18877b is described below

commit d18877b79732527e0874774d82c326a4513767b2
Author: Sutou Kouhei <[email protected]>
AuthorDate: Sat May 10 12:41:05 2025 +0900

    Fix verify RC CI (#551)
    
    Fixes #550
    
    We need to install Subversion explicitly with ubuntu-24.04.
---
 .github/workflows/ci.yml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 911910e..cd10082 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -47,6 +47,11 @@ jobs:
         if: matrix.os == 'macos-latest'
         run: |
           brew install julia subversion
+      - name: Install dependencies
+        if: matrix.os == 'ubuntu-latest'
+        run: |
+          sudo apt update
+          sudo apt install -y -V subversion
       - name: Create
         run: |
           git config user.name "github-actions[bot]"

Reply via email to