-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' of https://github.com/apache/seatunnel into dev
- Loading branch information
Showing
684 changed files
with
63,750 additions
and
5,419 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -50,7 +50,7 @@ jobs: | |
dead-link: | ||
name: Dead links | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 120 | ||
timeout-minutes: 150 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: sudo npm install -g [email protected] | ||
|
@@ -125,6 +125,12 @@ jobs: | |
echo "deleted-poms=$true_or_false" >> $GITHUB_OUTPUT | ||
echo "deleted-poms_files=$file_list" >> $GITHUB_OUTPUT | ||
doc_files=`python tools/update_modules_check/check_file_updates.py ua $workspace apache/dev origin/$current_branch "docs/**"` | ||
true_or_false=${doc_files%%$'\n'*} | ||
file_list=${doc_files#*$'\n'} | ||
echo "docs=$true_or_false" >> $GITHUB_OUTPUT | ||
echo "docs_files=$file_list" >> $GITHUB_OUTPUT | ||
engine_e2e_files=`python tools/update_modules_check/check_file_updates.py ua $workspace apache/dev origin/$current_branch "seatunnel-e2e/seatunnel-engine-e2e/**"` | ||
true_or_false=${engine_e2e_files%%$'\n'*} | ||
file_list=${engine_e2e_files#*$'\n'} | ||
|
@@ -268,6 +274,65 @@ jobs: | |
- name: Check Dependencies Licenses | ||
run: tools/dependencies/checkLicense.sh | ||
|
||
document: | ||
if: needs.changes.outputs.api == 'true' || needs.changes.outputs.docs == 'true' | ||
needs: [ changes, sanity-check ] | ||
name: Build website | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 60 | ||
steps: | ||
- name: Checkout PR | ||
uses: actions/checkout@v3 | ||
with: | ||
path: seatunnel-pr | ||
- name: Checkout website repo | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: apache/seatunnel-website | ||
path: seatunnel-website | ||
- name: Sync PR changes to website | ||
run: | | ||
bash seatunnel-pr/tools/documents/sync.sh seatunnel-pr seatunnel-website | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: 16.19.0 | ||
- name: Run docusaurus build | ||
run: | | ||
cd seatunnel-website | ||
npm set strict-ssl false | ||
npm install | ||
npm run build | ||
seatunnel-ui: | ||
if: needs.changes.outputs.api == 'true' | ||
needs: [ changes, sanity-check ] | ||
name: Build SeaTunnel UI | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 60 | ||
steps: | ||
- name: Checkout PR | ||
uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: 20.x | ||
|
||
- name: Install Dependencies and Check Code Style | ||
run: | | ||
cd seatunnel-engine/seatunnel-engine-ui/ | ||
npm install | ||
npm run lint | ||
- name: Run unit tests | ||
run: | | ||
cd seatunnel-engine/seatunnel-engine-ui/ | ||
npm run test:unit | ||
- name: Build SeaTunnel UI | ||
run: | | ||
cd seatunnel-engine/seatunnel-engine-ui/ | ||
npm run build | ||
unit-test: | ||
needs: [ changes, sanity-check ] | ||
if: needs.changes.outputs.api == 'true' || (needs.changes.outputs.api == 'false' && needs.changes.outputs.ut-modules != '') | ||
|
@@ -299,7 +364,7 @@ jobs: | |
matrix: | ||
java: [ '8', '11' ] | ||
os: [ 'ubuntu-latest' ] | ||
timeout-minutes: 120 | ||
timeout-minutes: 180 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK ${{ matrix.java }} | ||
|
@@ -330,7 +395,7 @@ jobs: | |
matrix: | ||
java: [ '8', '11' ] | ||
os: [ 'ubuntu-latest' ] | ||
timeout-minutes: 120 | ||
timeout-minutes: 150 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK ${{ matrix.java }} | ||
|
@@ -351,7 +416,7 @@ jobs: | |
echo "sub modules is empty, skipping" | ||
fi | ||
env: | ||
MAVEN_OPTS: -Xmx2048m | ||
MAVEN_OPTS: -Xmx4096m | ||
|
||
updated-modules-integration-test-part-3: | ||
needs: [ changes, sanity-check ] | ||
|
@@ -392,7 +457,7 @@ jobs: | |
matrix: | ||
java: [ '8', '11' ] | ||
os: [ 'ubuntu-latest' ] | ||
timeout-minutes: 120 | ||
timeout-minutes: 150 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK ${{ matrix.java }} | ||
|
@@ -413,7 +478,7 @@ jobs: | |
echo "sub modules is empty, skipping" | ||
fi | ||
env: | ||
MAVEN_OPTS: -Xmx2048m | ||
MAVEN_OPTS: -Xmx4096m | ||
updated-modules-integration-test-part-5: | ||
needs: [ changes, sanity-check ] | ||
if: needs.changes.outputs.api == 'false' && needs.changes.outputs.it-modules != '' | ||
|
@@ -683,7 +748,7 @@ jobs: | |
matrix: | ||
java: [ '8', '11' ] | ||
os: [ 'ubuntu-latest' ] | ||
timeout-minutes: 150 | ||
timeout-minutes: 180 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK ${{ matrix.java }} | ||
|
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
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
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.