Schedule Backend #550
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
# | |
# 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: Schedule Backend | |
on: | |
schedule: | |
- cron: '0 0 03 * *' | |
concurrency: | |
group: backend-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
license-header: | |
if: github.repository == 'apache/seatunnel' | |
name: License header | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Check license header | |
uses: apache/skywalking-eyes@985866ce7e324454f61e22eb2db2e998db09d6f3 | |
code-style: | |
if: github.repository == 'apache/seatunnel' | |
name: Code style | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Check code style | |
run: ./mvnw --batch-mode --quiet --no-snapshot-updates clean spotless:check | |
dead-link: | |
if: github.repository == 'apache/seatunnel' | |
name: Dead links | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo npm install -g markdown-link-check@3.8.7 | |
- run: | | |
for file in $(find . -name "*.md"); do | |
markdown-link-check -c .dlc.json -q "$file" | |
done | |
sanity-check: | |
if: github.repository == 'apache/seatunnel' | |
name: Sanity check results | |
needs: [ license-header, code-style, dead-link ] | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Check results | |
run: | | |
[[ ${{ needs.license-header.result }} == 'success' ]] || exit 1; | |
[[ ${{ needs.code-style.result }} == 'success' ]] || exit 1; | |
[[ ${{ needs.dead-link.result }} == 'success' ]] || exit 1; | |
dependency-license: | |
name: Dependency licenses | |
needs: [ sanity-check ] | |
runs-on: ubuntu-latest | |
timeout-minutes: 40 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '8' | |
cache: 'maven' | |
- name: Install | |
run: >- | |
./mvnw -B -q install -DskipTests | |
-D"maven.test.skip"=true | |
-D"maven.javadoc.skip"=true | |
-D"scalastyle.skip"=true | |
-D"license.skipAddThirdParty" | |
- name: Check Dependencies Licenses | |
run: tools/dependencies/checkLicense.sh | |
unit-test: | |
needs: [ sanity-check ] | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
java: [ '8', '11' ] | |
os: [ 'ubuntu-latest', 'windows-latest' ] | |
timeout-minutes: 90 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: run all modules unit test | |
run: | | |
./mvnw -B -T 1C clean verify -D"maven.test.skip"=false -D"scalastyle.skip"=true -D"license.skipAddThirdParty"=true --no-snapshot-updates | |
env: | |
MAVEN_OPTS: -Xmx2048m | |
integration-test: | |
needs: [ sanity-check ] | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
java: [ '8', '11' ] | |
os: [ 'ubuntu-latest' ] | |
timeout-minutes: 90 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: run all modules integration test | |
run: | | |
./mvnw -T 1C -B verify -DskipUT=true -DskipIT=false -D"scalastyle.skip"=true -D"license.skipAddThirdParty"=true --no-snapshot-updates | |
env: | |
MAVEN_OPTS: -Xmx2048m | |