feature/ADH-4753 request date range object to independent fields #261
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR and master push checks | |
on: | |
push: | |
branches: [ "develop" ] | |
pull_request: | |
branches: [ "develop" ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
hdfs-version: [ 3.2, 3.3 ] | |
runs-on: ubuntu-latest | |
name: Build with HDFS ${{ matrix.hdfs-version }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '8' | |
distribution: 'temurin' | |
cache: maven | |
- name: Build with Maven | |
run: mvn clean install -Pdist,web,hadoop-${{ matrix.hdfs-version }} -DskipTests | |
- name: Run tests | |
run: mvn test -Dmaven.test.redirectTestOutputToFile=false -pl '!smart-zeppelin,!org.smartdata:smart-zeppelin-interpreter,!org.smartdata:smart-zeppelin-zengine,!org.smartdata:smart-zeppelin-display,!org.smartdata:smart-zeppelin-server' -am -Phadoop-${{ matrix.hdfs-version }} |