-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into origin/ColumnLevelLineageAndPathCypressTest
- Loading branch information
Showing
1,057 changed files
with
41,271 additions
and
11,320 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
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ on: | |
- "**.md" | ||
pull_request: | ||
branches: | ||
- master | ||
- "**" | ||
paths-ignore: | ||
- "docs/**" | ||
- "**.md" | ||
|
@@ -24,17 +24,12 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
command: | ||
[ | ||
"./gradlew build -x :metadata-ingestion:build -x :metadata-ingestion:check -x docs-website:build -x :metadata-integration:java:spark-lineage:test -x :metadata-io:test -x :metadata-ingestion-modules:airflow-plugin:build -x :datahub-frontend:build -x :datahub-web-react:build --parallel", | ||
"./gradlew :datahub-frontend:build :datahub-web-react:build --parallel", | ||
"./gradlew :metadata-ingestion-modules:airflow-plugin:build --parallel" | ||
] | ||
timezone: | ||
[ | ||
"UTC", | ||
"America/New_York", | ||
command: [ | ||
# metadata-ingestion and airflow-plugin each have dedicated build jobs | ||
"except_metadata_ingestion", | ||
"frontend" | ||
] | ||
timezone: ["UTC", "America/New_York"] | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 60 | ||
steps: | ||
|
@@ -51,10 +46,17 @@ jobs: | |
java-version: 11 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.7" | ||
- name: Gradle build (and test) | ||
python-version: "3.10" | ||
cache: pip | ||
- name: Gradle build (and test) for metadata ingestion | ||
# we only need the timezone runs for frontend tests | ||
if: ${{ matrix.command == 'except_metadata_ingestion' && matrix.timezone == 'America/New_York' }} | ||
run: | | ||
./gradlew build -x :metadata-ingestion:build -x :metadata-ingestion:check -x docs-website:build -x :metadata-integration:java:spark-lineage:test -x :metadata-io:test -x :metadata-ingestion-modules:airflow-plugin:build -x :metadata-ingestion-modules:airflow-plugin:check -x :datahub-frontend:build -x :datahub-web-react:build --parallel | ||
- name: Gradle build (and test) for frontend | ||
if: ${{ matrix.command == 'frontend' }} | ||
run: | | ||
${{ matrix.command }} | ||
./gradlew :datahub-frontend:build :datahub-web-react:build --parallel | ||
env: | ||
NODE_OPTIONS: "--max-old-space-size=3072" | ||
- uses: actions/upload-artifact@v3 | ||
|
@@ -81,7 +83,7 @@ jobs: | |
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.7" | ||
python-version: "3.10" | ||
- name: Download YQ | ||
uses: chrisdickinson/[email protected] | ||
with: | ||
|
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
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name: documentation | |
on: | ||
pull_request: | ||
branches: | ||
- master | ||
- "**" | ||
push: | ||
branches: | ||
- master | ||
|
Oops, something went wrong.