You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by pa...@apache.org on 2023/06/12 18:21:02 UTC

[arrow-nanoarrow] branch main updated: chore: Update Arrow C++ version for Windows verification and remove rtools from PATH on Windows (#227)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 24e679d  chore: Update Arrow C++ version for Windows verification and remove rtools from PATH on Windows (#227)
24e679d is described below

commit 24e679df5e8cb98ea5168269b9115cc4876195a6
Author: Dewey Dunnington <de...@dunnington.ca>
AuthorDate: Mon Jun 12 15:20:58 2023 -0300

    chore: Update Arrow C++ version for Windows verification and remove rtools from PATH on Windows (#227)
    
    Closes #188.
---
 .github/workflows/verify.yaml | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/verify.yaml b/.github/workflows/verify.yaml
index 68e08d3..4c26986 100644
--- a/.github/workflows/verify.yaml
+++ b/.github/workflows/verify.yaml
@@ -69,6 +69,8 @@ jobs:
       - uses: r-lib/actions/setup-r@v2
         with:
           use-public-rspm: true
+          windows-path-include-rtools: false
+          windows-path-include-mingw: false
       - uses: r-lib/actions/setup-r-dependencies@v2
         with:
           needs: check
@@ -80,7 +82,7 @@ jobs:
         uses: actions/cache@v3
         with:
           path: arrow
-          key: arrow-${{ runner.os }}-2
+          key: arrow-${{ runner.os }}-3
 
       # For Arrow C++
       - name: Install Arrow C++ (MacOS)
@@ -103,10 +105,10 @@ jobs:
         if: matrix.config.label == 'windows' && steps.cache-arrow-build.outputs.cache-hit != 'true'
         shell: bash
         run: |
-          curl https://dlcdn.apache.org/arrow/arrow-11.0.0/apache-arrow-11.0.0.tar.gz | \
+          curl https://dlcdn.apache.org/arrow/arrow-12.0.0/apache-arrow-12.0.0.tar.gz | \
             tar -zxf -
           mkdir arrow-build && cd arrow-build
-          cmake ../apache-arrow-11.0.0/cpp -DCMAKE_INSTALL_PREFIX=../arrow
+          cmake ../apache-arrow-12.0.0/cpp -DCMAKE_INSTALL_PREFIX=../arrow
           cmake --build .
           cmake --install . --prefix=../arrow --config=Debug
           cd ..