forked from datahub-project/datahub
-
Notifications
You must be signed in to change notification settings - Fork 0
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 feat/PRD-789-new
- Loading branch information
Showing
207 changed files
with
6,959 additions
and
12,101 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,11 +29,15 @@ jobs: | |
"except_metadata_ingestion", | ||
"frontend", | ||
] | ||
timezone: ["UTC", "America/New_York"] | ||
timezone: ["UTC"] | ||
include: | ||
# We only need the timezone variation for frontend tests. | ||
- command: "frontend" | ||
timezone: "America/New_York" | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 60 | ||
steps: | ||
- uses: szenius/set-timezone@v1.0 | ||
- uses: szenius/set-timezone@v1.2 | ||
with: | ||
timezoneLinux: ${{ matrix.timezone }} | ||
- uses: hsheth2/sane-checkout-action@v1 | ||
|
@@ -42,13 +46,13 @@ jobs: | |
with: | ||
distribution: "zulu" | ||
java-version: 17 | ||
- uses: gradle/gradle-build-action@v2 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
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' }} | ||
if: ${{ matrix.command == 'except_metadata_ingestion' }} | ||
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 | ||
|
@@ -65,15 +69,9 @@ jobs: | |
**/build/reports/tests/test/** | ||
**/build/test-results/test/** | ||
**/junit.*.xml | ||
!**/binary/** | ||
- name: Ensure codegen is updated | ||
uses: ./.github/actions/ensure-codegen-updated | ||
- name: Slack failure notification | ||
if: failure() && github.event_name == 'push' | ||
uses: kpritam/slack-job-status-action@v1 | ||
with: | ||
job-status: ${{ job.status }} | ||
slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }} | ||
channel: github-activities | ||
|
||
quickstart-compose-validation: | ||
runs-on: ubuntu-latest | ||
|
@@ -82,10 +80,6 @@ jobs: | |
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.10" | ||
- name: Download YQ | ||
uses: chrisdickinson/[email protected] | ||
with: | ||
yq-version: v4.28.2 | ||
- name: Quickstart Compose Validation | ||
run: ./docker/quickstart/generate_and_compare.sh | ||
|
||
|
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 |
---|---|---|
|
@@ -14,3 +14,63 @@ jobs: | |
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
configuration-path: ".github/pr-labeler-config.yml" | ||
- uses: actions-ecosystem/[email protected] | ||
# only add names of Acryl Data team members here | ||
if: | ||
${{ | ||
!contains( | ||
fromJson('[ | ||
"anshbansal", | ||
"asikowitz", | ||
"chriscollins3456", | ||
"david-leifker", | ||
"shirshanka", | ||
"sid-acryl", | ||
"swaroopjagadish", | ||
"treff7es", | ||
"yoonhyejin", | ||
"eboneil", | ||
"ethan-cartwright", | ||
"gabe-lyons", | ||
"hsheth2", | ||
"jjoyce0510", | ||
"maggiehays", | ||
"mrjefflewis", | ||
"pedro93", | ||
"RyanHolstien" | ||
]'), | ||
github.actor | ||
) | ||
}} | ||
with: | ||
github_token: ${{ github.token }} | ||
labels: | | ||
community-contribution | ||
- uses: actions-ecosystem/[email protected] | ||
# only add names of champions here. Confirm with DevRel Team | ||
if: | ||
${{ | ||
contains( | ||
fromJson('[ | ||
"skrydal", | ||
"siladitya2", | ||
"sgomezvillamor", | ||
"ngamanda", | ||
"HarveyLeo", | ||
"frsann", | ||
"bossenti", | ||
"nikolakasev", | ||
"PatrickfBraz", | ||
"cuong-pham", | ||
"sudhakarast", | ||
"tkdrahn", | ||
"rtekal", | ||
"sgm44" | ||
]'), | ||
github.actor | ||
) | ||
}} | ||
with: | ||
github_token: ${{ github.token }} | ||
labels: | | ||
datahub-community-champion |
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.