You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2019/05/16 08:59:07 UTC

[arrow] branch master updated: ARROW-5319: [C++][CI] Use ccache with MinGW builds on AppVeyor [travis skip]

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

kou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new fcc0704  ARROW-5319: [C++][CI] Use ccache with MinGW builds on AppVeyor [travis skip]
fcc0704 is described below

commit fcc0704e2b80316cf57eb24c1e3357366d6d96a1
Author: Kouhei Sutou <ko...@clear-code.com>
AuthorDate: Thu May 16 17:58:45 2019 +0900

    ARROW-5319: [C++][CI] Use ccache with MinGW builds on AppVeyor [travis skip]
    
    Author: Kouhei Sutou <ko...@clear-code.com>
    
    Closes #4325 from kou/cpp-appveyor-mingw-ccache and squashes the following commits:
    
    a4becd5a <Kouhei Sutou>  Use ccache with MinGW builds on AppVeyor
---
 appveyor.yml                    | 1 +
 ci/appveyor-cpp-setup-mingw.bat | 1 +
 2 files changed, 2 insertions(+)

diff --git a/appveyor.yml b/appveyor.yml
index bf54ed5..f4c5877 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -33,6 +33,7 @@ only_commits:
 
 cache:
   - C:\Users\Appveyor\clcache1
+  - C:\msys64\home\appveyor\.ccache
   - C:\Users\Appveyor\.cargo\registry
   - '%LocalAppData%\\go-build'
 
diff --git a/ci/appveyor-cpp-setup-mingw.bat b/ci/appveyor-cpp-setup-mingw.bat
index 4e4ae75..94fbb40 100644
--- a/ci/appveyor-cpp-setup-mingw.bat
+++ b/ci/appveyor-cpp-setup-mingw.bat
@@ -25,6 +25,7 @@ if "%MSYSTEM%" == "MINGW32" (
 set PATH=%MINGW_PREFIX%\bin;C:\msys64\usr\bin;%PATH%
 
 pacman --sync --refresh --noconfirm ^
+    "ccache" ^
     "%MINGW_PACKAGE_PREFIX%-boost" ^
     "%MINGW_PACKAGE_PREFIX%-brotli" ^
     "%MINGW_PACKAGE_PREFIX%-cmake" ^