Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-623: Cleanup enabling Gandiva tests change #624

Merged
merged 1 commit into from
Feb 20, 2025
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
18 changes: 12 additions & 6 deletions .github/workflows/rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,12 @@ jobs:
- name: Extract source archive
run: |
tar -xf apache-arrow-java-*.tar.gz --strip-components=1
# We always use the main branch for apache/arrow for now.
# Because we want to use
# https://github.com/apache/arrow/pull/45114 in
# apache/arrow-java. We can revert this workaround once Apache
# Arrow 20.0.0 that includes the change released.
#
# - name: Download the latest Apache Arrow C++
# if: github.event_name != 'schedule'
# run: |
Expand Down Expand Up @@ -299,13 +305,13 @@ jobs:
shell: bash
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: 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'
if: github.event_name == 'schedule'
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
repository: apache/arrow
Expand Down
Loading