Skip to content

Commit

Permalink
Merge branch 'main' into lei/merge_schema
Browse files Browse the repository at this point in the history
  • Loading branch information
eddyxu authored Oct 26, 2022
2 parents 90ec4c7 + b13f617 commit 00e505e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ jobs:
build:
runs-on: ubuntu-22.04
timeout-minutes: 30
env:
ArrowVersion: 9.0.0-1
defaults:
run:
working-directory: ./cpp
Expand All @@ -24,7 +26,7 @@ jobs:
wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
sudo apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
sudo apt update
sudo apt install -y -V libarrow-dev libarrow-dataset-dev libparquet-dev
sudo apt install -y -V libarrow-dev=${ArrowVersion} libarrow-dataset-dev=${ArrowVersion} libparquet-dev=${ArrowVersion}
- name: Cmake
run: cmake -B build
- name: Build
Expand All @@ -41,7 +43,8 @@ jobs:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
brew update
cd $(brew --repository)
git checkout 3.6.6 # Arrow 9.0
brew install apache-arrow protobuf
- name: Cmake
run: cmake -B build
Expand Down

0 comments on commit 00e505e

Please sign in to comment.