blob: dc4b112fac62641b2f76a8c9191841f2d9c95fa5 [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 Java Cookbook on MacOS
on:
pull_request:
branches:
- main
paths:
- "java/**"
- ".github/workflows/test_java_osx_cookbook.yml"
concurrency:
group: ${{ github.repository }}-${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
test_java_osx:
name: "Test Java Cookbook on MacOS"
runs-on: macos-latest
strategy:
matrix:
python-version: [ '3.9' ]
java-version: [ '11', '17', '18' ]
arrow_nightly: ['0']
env:
ARROW_NIGHTLY: ${{ matrix.arrow_nightly }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
- name: Run tests
run: make javatest
- name: Build cookbook
run: make java