-
Notifications
You must be signed in to change notification settings - Fork 5
35 lines (35 loc) · 915 Bytes
/
apache-arrow.yaml
File metadata and controls
35 lines (35 loc) · 915 Bytes
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
28
29
30
31
32
33
34
35
name: Apache Arrow
on:
push:
pull_request:
jobs:
test:
name: ${{ matrix.runs-on }}
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
runs-on:
- macos-latest
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: ruby
- name: Install rubygems-requirements-system
run: |
gem install rubygems-requirements-system
- name: Update Homebrew
if: matrix.runs-on == 'macos-latest'
run: |
brew update
# We can remove once red-arrow 24.0.0 is released.
brew install apache-arrow-glib
- name: Install Ext++
run: rake install
- name: Install Red Arrow
run: gem install red-arrow
- name: Load Red Arrow
run: ruby -e "require 'arrow'"