blob: fb7f2b9ea170543b224e74d71d2a594b3ac444f3 [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:
pull_request:
branches:
- main
- stable
paths:
- "java/**"
- ".github/workflows/test_java_cookbook.yml"
concurrency:
group: ${{ github.repository }}-${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
test_java_linux:
name: "Test Java Cookbook On Linux"
runs-on: ubuntu-latest
env:
ARROW_NIGHTLY: ${{ github.base_ref == 'main' && 1 || 0 }}
strategy:
matrix:
python-version: [ '3.9' ]
java-version: [ '11', '17', '18' ]
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: Install dependencies
run: |
sudo apt update
sudo apt install libcurl4-openssl-dev libssl-dev
- name: Run tests
run: |
make javatest
- name: Build cookbook
run: |
make java
test_java_osx:
name: "Test Java Cookbook on MacOS"
runs-on: macos-latest
env:
ARROW_NIGHTLY: ${{ github.base_ref == 'main' && 1 || 0 }}
strategy:
matrix:
python-version: [ '3.9' ]
java-version: [ '11', '17', '18' ]
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