Skip to content

Commit 1bde279

Browse files
authored
apacheGH-545: [CI] Use apache/arrow main for daily RC CI (apache#556)
Fixes apache#545.
1 parent 921e6b4 commit 1bde279

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/rc.yml

+21
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,15 @@ jobs:
108108
run: |
109109
tar -xf apache-arrow-java-*.tar.gz --strip-components=1
110110
- name: Download the latest Apache Arrow C++
111+
if: github.event_name != 'schedule'
111112
run: |
112113
ci/scripts/download_cpp.sh
114+
- name: Checkout Apache Arrow C++
115+
if: github.event_name == 'schedule'
116+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
117+
with:
118+
repository: apache/arrow
119+
path: arrow
113120
- name: Checkout apache/arrow-testing
114121
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
115122
with:
@@ -168,8 +175,15 @@ jobs:
168175
run: |
169176
tar -xf apache-arrow-java-*.tar.gz --strip-components=1
170177
- name: Download the latest Apache Arrow C++
178+
if: github.event_name != 'schedule'
171179
run: |
172180
ci/scripts/download_cpp.sh
181+
- name: Checkout Apache Arrow C++
182+
if: github.event_name == 'schedule'
183+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
184+
with:
185+
repository: apache/arrow
186+
path: arrow
173187
- name: Checkout apache/arrow-testing
174188
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
175189
with:
@@ -286,9 +300,16 @@ jobs:
286300
run: |
287301
tar -xf apache-arrow-java-*.tar.gz --strip-components=1
288302
- name: Download the latest Apache Arrow C++
303+
if: github.event_name != 'schedule'
289304
shell: bash
290305
run: |
291306
ci/scripts/download_cpp.sh
307+
- name: Checkout Apache Arrow C++
308+
if: github.event_name == 'schedule'
309+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
310+
with:
311+
repository: apache/arrow
312+
path: arrow
292313
- name: Set up Java
293314
uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b # v4.6.0
294315
with:

0 commit comments

Comments
 (0)