Skip to content

chore: pom update #4078

chore: pom update

chore: pom update #4078

Workflow file for this run

#
# 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: Build Backend
on: [push, pull_request]
env:
MAVEN_OPTS: -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.http.retryHandler.class=standard -Dmaven.wagon.http.retryHandler.count=3 -Dmaven.wagon.httpconnectionManager.ttlSeconds=120
jobs:
build-backend:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 8
- name: Build backend by maven
run:
./mvnw clean package
build-spark:
runs-on: ubuntu-latest
strategy:
matrix:
installSpark: [ 'spark2.4-hadoop2.3', 'spark3.2-hadoop3.3','spark2.4-hadoop3.3' ]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 8
- if: ${{ matrix.installSpark == 'spark2.4-hadoop2.3' }}
name: build-spark on init
run:
./mvnw clean install -Pspark-2.4 -Phadoop-2.3 -Dmaven.test.skip=true
- if: ${{ matrix.installSpark == 'spark3.2-hadoop3.3' }}
name: build-spark on 3.2
run:
./mvnw clean install -Pspark-3.2 -Phadoop-3.3 -Dmaven.test.skip=true
- if: ${{ matrix.installSpark == 'spark2.4-hadoop3.3' }}
name: build-spark on 2.4
run:
./mvnw clean install -Pspark-2.4-hadoop-3.3 -Phadoop-3.3 -Dmaven.test.skip=true
# - name: Upload coverage to Codecov
# uses: codecov/[email protected]
# with:
# token: ${{ secrets.CODECOV_TOKEN }}