blob: 35477b6703f74145dba94bd46f6da9964b7fcc68 [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
name: Test
on:
pull_request:
push:
concurrency:
group: ${{ github.head_ref || github.sha }}-${{ github.workflow }}
cancel-in-progress: true
permissions:
contents: read
jobs:
test:
name: ${{ matrix.os }} - PostgreSQL ${{ matrix.postgresql-version }}
runs-on: ${{ matrix.os }}-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
os:
- macos
- ubuntu
postgresql-version:
- "15"
steps:
- uses: actions/checkout@v4
- name: Prepare
run: |
ci/scripts/prepare-${{ matrix.os }}.sh ${{ matrix.postgresql-version }}
- name: Install Apache Arrow Flight SQL adapter
run: |
setup_args=(
"--prefix=/tmp/local"
"-Dbenchmark=true"
"-Dpostgresql_dir=$(pg_config --bindir)/.."
)
if [ ${{ matrix.os }} = "macos" ]; then
setup_args+=("--pkg-config-path=$(brew --prefix libpq)/lib/pkgconfig")
fi
meson setup "${setup_args[@]}" build
meson compile -C build
if [ ${{ matrix.os }} = "ubuntu" ]; then
sudo meson install -C build
else
meson install -C build
fi
- uses: ruby/setup-ruby@v1
with:
ruby-version: ruby
bundler-cache: true
cache-version: 1
- name: Run
run: |
ARROW_FLIGHT_SQL_POSTGRESQL_MESON_SETUP_ARGS="-Dbenchmark=true"
if [ ${{ matrix.os }} = "macos" ]; then
ARROW_FLIGHT_SQL_POSTGRESQL_MESON_SETUP_ARGS+=" --pkg-config-path=$(brew --prefix libpq)/lib/pkgconfig"
fi
bundle exec dev/release/verify-rc.sh
env:
TEST_DEFAULT: "0"
TEST_SOURCE: "1"