Skip to content

[chunjun-test] fix test #792

[chunjun-test] fix test

[chunjun-test] fix test #792

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: Check Code.
on:
push:
branches:
- master
pull_request:
paths-ignore:
- 'chunjun-docker/**/*'
- 'chunjun-examples/**/*'
- 'chunjun-dev/**/*'
- '**/*.md'
- 'docs/**/*'
- 'website/**/*'
- '**/*.ftl'
concurrency:
group: backend-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
spotless-check:
if: github.repository =='DTStack/chunjun'
name: Check code style with spotless.
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: true
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: 8
distribution: 'temurin'
cache: 'maven'
- name: Spotless Check
run: |
./mvnw spotless:check
build:
if: github.repository =='DTStack/chunjun'
name: Build the project.
needs: [ spotless-check ]
runs-on: ubuntu-latest
timeout-minutes: 90
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: 8
distribution: 'temurin'
cache: 'maven'
- name: add dependencies
run: |
wget http://nexus.dev.dtstack.cn/nexus/content/repositories/dtstack-release/com/esen/jdbc/gbase/8.3.81.53/gbase-8.3.81.53.jar
./mvnw install:install-file -DgroupId=com.esen.jdbc -DartifactId=gbase -Dversion=8.3.81.53 -Dpackaging=jar -Dfile=./gbase-8.3.81.53.jar
- name: build project
run: |
./mvnw clean package -Dmaven.test.skip --no-snapshot-updates
- name: unit-test
run: |
./mvnw -T 1C clean compile test -DskipUT=false -DskipITCase=false --no-snapshot-updates
- name: integration-test
run: |
./mvnw -T 1C -B verify -DskipUT=true -DskipIT=false --no-snapshot-updates -pl chunjun-e2e -am
env:
MAVEN_OPTS: -Xmx2048m