Skip to content

Commit

Permalink
ARROW-7726: [CI] [C++] Use boost binaries on Windows GHA build
Browse files Browse the repository at this point in the history
The binaries are installed using Chocolatey, which takes a bit of time (it's a 2+GB install...), but less so than recompiling Boost from scratch during the CMake build.

[skip appveyor]

Closes #6325 from pitrou/ARROW-7726-download-boost-gha and squashes the following commits:

e877622 <Antoine Pitrou> Revert "Try a more flexible way of finding Boost"
eb5db8f <Antoine Pitrou> Try a more flexible way of finding Boost
d570649 <Antoine Pitrou> ARROW-7726:   Use boost binaries on Windows GHA build

Authored-by: Antoine Pitrou <antoine@python.org>
Signed-off-by: Sutou Kouhei <kou@clear-code.com>
  • Loading branch information
pitrou authored and kszucs committed Feb 7, 2020
1 parent 0ed81a8 commit 3f0c41a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,15 @@ jobs:
ARROW_BUILD_STATIC: OFF
ARROW_BOOST_USE_SHARED: OFF
ARROW_VERBOSE_THIRDPARTY_BUILD: OFF
BOOST_SOURCE: BUNDLED
BOOST_ROOT: C:\local\boost_1_67_0
BOOST_LIBRARYDIR: C:\local\boost_1_67_0\lib64-msvc-14.1\
steps:
- name: Disable Crash Dialogs
run: reg add "HKCU\SOFTWARE\Microsoft\Windows\Windows Error Reporting" /v DontShowUI /t REG_DWORD /d 1 /f
- name: Installed Packages
run: choco list -l
- name: Install Boost
run: choco install -y boost-msvc-14.1
- name: Checkout Arrow
uses: actions/checkout@v1
with:
Expand Down

0 comments on commit 3f0c41a

Please sign in to comment.