From 8432e45bec669c689f0d71e11a2512572a01010a Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Thu, 23 Jan 2025 14:43:16 +0900 Subject: [PATCH] GH-545: [CI] Use apache/arrow main for daily RC CI Fixes #545. --- .github/workflows/rc.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/workflows/rc.yml b/.github/workflows/rc.yml index 3d6120dc..61281964 100644 --- a/.github/workflows/rc.yml +++ b/.github/workflows/rc.yml @@ -108,8 +108,15 @@ jobs: run: | tar -xf apache-arrow-java-*.tar.gz --strip-components=1 - name: Download the latest Apache Arrow C++ + if: github.event_name != 'schedule' run: | ci/scripts/download_cpp.sh + - name: Checkout Apache Arrow C++ + if: github.event_name == 'schedule' + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + with: + repository: apache/arrow + path: arrow - name: Checkout apache/arrow-testing uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: @@ -168,8 +175,15 @@ jobs: run: | tar -xf apache-arrow-java-*.tar.gz --strip-components=1 - name: Download the latest Apache Arrow C++ + if: github.event_name != 'schedule' run: | ci/scripts/download_cpp.sh + - name: Checkout Apache Arrow C++ + if: github.event_name == 'schedule' + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + with: + repository: apache/arrow + path: arrow - name: Checkout apache/arrow-testing uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: @@ -286,9 +300,16 @@ jobs: run: | tar -xf apache-arrow-java-*.tar.gz --strip-components=1 - name: Download the latest Apache Arrow C++ + if: github.event_name != 'schedule' shell: bash run: | ci/scripts/download_cpp.sh + - name: Checkout Apache Arrow C++ + if: github.event_name == 'schedule' + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + with: + repository: apache/arrow + path: arrow - name: Set up Java uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b # v4.6.0 with: