Skip to content

Merge hive2 and hive3 support into one branch as Gradle subprojects #116

Merge hive2 and hive3 support into one branch as Gradle subprojects

Merge hive2 and hive3 support into one branch as Gradle subprojects #116

Workflow file for this run

name: CI Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 11]
subproject: [hive2, hive3]
fail-fast: false
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build with Gradle
run: ./gradlew ${{ matrix.subproject }}:build