-
Notifications
You must be signed in to change notification settings - Fork 17
27 lines (27 loc) · 959 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: build
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
ruby: [3.4, 3.3, 3.2, 3.1]
runs-on: ubuntu-latest
# env:
# TEST_PARQUET: 1
steps:
- uses: actions/checkout@v4
# for iruby
- run: sudo apt update && sudo apt install libzmq5
# - run: |
# 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 ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
# sudo apt update
# sudo apt install libthrift-dev libarrow-dev libarrow-glib-dev libparquet-dev
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
# disable caching when testing Parquet
bundler-cache: true
- run: bundle install
- run: bundle exec rake test