Skip to content

HOPSFS-351: Bump hive version to 3.0.0.14.1 #8

HOPSFS-351: Bump hive version to 3.0.0.14.1

HOPSFS-351: Bump hive version to 3.0.0.14.1 #8

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup JDK 8
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 8
cache: 'maven'
- name: Create Maven settings
run: |
mkdir -p ~/.m2
echo "${{ secrets.MAVEN_SETTINGS_BASE64 }}" | base64 -d > ~/.m2/settings.xml
- name: Build (Pull Request)
if: github.event_name == 'pull_request'
run: mvn clean install -B -DskipTests
- name: Build (Push - No Deploy)
if: github.event_name == 'push' && (github.repository != 'logicalclocks/trino-hive-apache' || (!startsWith(github.ref, 'refs/heads/branch-') && github.ref != 'refs/heads/master'))
run: mvn clean install -B -DskipTests
- name: Build and Deploy (Push to release branches on logicalclocks)
if: github.event_name == 'push' && github.repository == 'logicalclocks/trino-hive-apache' && (startsWith(github.ref, 'refs/heads/branch-') || github.ref == 'refs/heads/master')
run: mvn clean install deploy -B -DskipTests