forked from apache/seatunnel
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'apache:dev' into mysql
- Loading branch information
Showing
1,914 changed files
with
94,112 additions
and
9,635 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,128 +18,17 @@ | |
name: Schedule Backend | ||
on: | ||
schedule: | ||
- cron: '0 0 03 * *' | ||
- cron: '0 16 * * *' | ||
|
||
concurrency: | ||
group: backend-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
group: schedule-backend-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: false | ||
|
||
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 [email protected] | ||
- 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 | ||
|
||
call-build-and-test: | ||
permissions: | ||
packages: write | ||
name: Run | ||
uses: ./.github/workflows/backend.yml | ||
with: | ||
TEST_IN_PR: false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,3 +55,8 @@ seatunnel-examples | |
|
||
/lib/* | ||
version.properties | ||
node/ | ||
|
||
dist/ | ||
|
||
seatunnel-engine/seatunnel-engine-server/**/ui/* |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,8 +16,8 @@ | |
# | ||
|
||
# JVM Heap | ||
-Xms2g | ||
-Xmx2g | ||
# -Xms2g | ||
# -Xmx2g | ||
|
||
# JVM Dump | ||
-XX:+HeapDumpOnOutOfMemoryError | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,8 +16,8 @@ | |
# | ||
|
||
# JVM Heap | ||
-Xms2g | ||
-Xmx2g | ||
# -Xms2g | ||
# -Xmx2g | ||
|
||
# JVM Dump | ||
-XX:+HeapDumpOnOutOfMemoryError | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,8 +16,8 @@ | |
# | ||
|
||
# JVM Heap | ||
-Xms2g | ||
-Xmx2g | ||
# -Xms2g | ||
# -Xmx2g | ||
|
||
# JVM Dump | ||
-XX:+HeapDumpOnOutOfMemoryError | ||
|
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
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
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
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
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
Oops, something went wrong.