kou commented on PR #595: URL: https://github.com/apache/arrow-java/pull/595#issuecomment-2655442324
Ah, I thought that updating `VCPKG` in `.env` is enough to use LLVM 18 but we refer `ci/vcpkg` in apache/arrow here...: https://github.com/apache/arrow-java/blob/34e2b08ff1b06c864f63f3ad1a3a771d0e7b058b/ci/docker/vcpkg-jni.dockerfile#L26 The log shows that we use LLVM 17: https://github.com/apache/arrow-java/actions/runs/13298859368/job/37137015507?pr=595#step:10:1663 ```text -- Found LLVMAlt: 17.0.2 ``` OK. Let's use main for now: ```diff diff --git a/.github/workflows/rc.yml b/.github/workflows/rc.yml index faad5983..f2666a31 100644 --- a/.github/workflows/rc.yml +++ b/.github/workflows/rc.yml @@ -299,13 +299,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 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
