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.
- Loading branch information
Showing
5,322 changed files
with
688,149 additions
and
186,164 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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 |
---|---|---|
@@ -0,0 +1,92 @@ | ||
name: 'Identify CI Optimizations' | ||
description: 'Determine if code changes are specific to certain modules.' | ||
|
||
outputs: | ||
frontend-only: | ||
description: "Frontend only change" | ||
value: ${{ steps.filter.outputs.frontend == 'true' && steps.filter.outputs.ingestion == 'false' && steps.filter.outputs.backend == 'false' }} | ||
ingestion-only: | ||
description: "Ingestion only change" | ||
value: ${{ steps.filter.outputs.frontend == 'false' && steps.filter.outputs.ingestion == 'true' && steps.filter.outputs.backend == 'false' }} | ||
backend-only: | ||
description: "Backend only change" | ||
value: ${{ steps.filter.outputs.frontend == 'false' && steps.filter.outputs.ingestion == 'false' && steps.filter.outputs.backend == 'true' }} | ||
backend-change: | ||
description: "Backend code has changed" | ||
value: ${{ steps.filter.outputs.backend == 'true' }} | ||
ingestion-change: | ||
description: "Ingestion code has changed" | ||
value: ${{ steps.filter.outputs.ingestion == 'true' }} | ||
ingestion-base-change: | ||
description: "Ingestion base image docker image has changed" | ||
value: ${{ steps.filter.outputs.ingestion-base == 'true' }} | ||
frontend-change: | ||
description: "Frontend code has changed" | ||
value: ${{ steps.filter.outputs.frontend == 'true' }} | ||
docker-change: | ||
description: "Docker code has changed" | ||
value: ${{ steps.filter.outputs.docker == 'true' }} | ||
kafka-setup-change: | ||
description: "Kafka setup docker change" | ||
value: ${{ steps.filter.outputs.kafka-setup == 'true' }} | ||
mysql-setup-change: | ||
description: "Mysql setup docker change" | ||
value: ${{ steps.filter.outputs.mysql-setup == 'true' }} | ||
postgres-setup-change: | ||
description: "Postgres setup docker change" | ||
value: ${{ steps.filter.outputs.postgres-setup == 'true' }} | ||
elasticsearch-setup-change: | ||
description: "Elasticsearch setup docker change" | ||
value: ${{ steps.filter.outputs.elasticsearch-setup == 'true' }} | ||
smoke-test-change: | ||
description: "Smoke test change" | ||
value: ${{ steps.filter.outputs.smoke-test == 'true' }} | ||
runs: | ||
using: "composite" | ||
steps: | ||
- uses: dorny/paths-filter@v2 | ||
id: filter | ||
with: | ||
filters: | | ||
frontend: | ||
- "datahub-frontend/**" | ||
- "datahub-web-react/**" | ||
- "smoke-test/tests/cypress/**" | ||
- "docker/datahub-frontend/**" | ||
ingestion: | ||
- "metadata-ingestion-modules/**" | ||
- "metadata-ingestion/**" | ||
- "metadata-models/**" | ||
- "smoke-test/**" | ||
- "docker/datahub-ingestion**" | ||
ingestion-base: | ||
- "docker/datahub-ingestion-base/**" | ||
docker: | ||
- "docker/**" | ||
backend: | ||
- ".github/**" | ||
- "metadata-models/**" | ||
- "datahub-upgrade/**" | ||
- "entity-registry/**" | ||
- "li-utils/**" | ||
- "metadata-auth/**" | ||
- "metadata-dao-impl/**" | ||
- "metadata-events/**" | ||
- "metadata-io/**" | ||
- "metadata-jobs/**" | ||
- "metadata-service/**" | ||
- "metadata-utils/**" | ||
- "metadata-operation-context/**" | ||
- "datahub-graphql-core/**" | ||
- "smoke-test/**" | ||
- "docker/**" | ||
kafka-setup: | ||
- "docker/kafka-setup/**" | ||
mysql-setup: | ||
- "docker/mysql-setup/**" | ||
postgres-setup: | ||
- "docker/postgres-setup/**" | ||
elasticsearch-setup: | ||
- "docker/elasticsearch-setup/**" | ||
smoke-test: | ||
- "smoke-test/**" |
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import setuptools | ||
import os | ||
|
||
folders = ["./smoke-test/tests"] | ||
|
||
for folder in folders: | ||
print(f"Checking folder {folder}") | ||
packages = [i for i in setuptools.find_packages(folder) if "cypress" not in i] | ||
namespace_packages = [ | ||
i for i in setuptools.find_namespace_packages(folder) if "cypress" not in i | ||
] | ||
|
||
print("Packages found:", packages) | ||
print("Namespace packages found:", namespace_packages) | ||
|
||
in_packages_not_namespace = set(packages) - set(namespace_packages) | ||
in_namespace_not_packages = set(namespace_packages) - set(packages) | ||
|
||
if in_packages_not_namespace: | ||
print(f"Packages not in namespace packages: {in_packages_not_namespace}") | ||
if in_namespace_not_packages: | ||
print(f"Namespace packages not in packages: {in_namespace_not_packages}") | ||
for pkg in in_namespace_not_packages: | ||
pkg_path = os.path.join(folder, pkg.replace(".", os.path.sep)) | ||
print(f"Contents of {pkg_path}:") | ||
print(os.listdir(pkg_path)) | ||
|
||
assert ( | ||
len(in_packages_not_namespace) == 0 | ||
), f"Found packages in {folder} that are not in namespace packages: {in_packages_not_namespace}" | ||
assert ( | ||
len(in_namespace_not_packages) == 0 | ||
), f"Found namespace packages in {folder} that are not in packages: {in_namespace_not_packages}" |
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 |
---|---|---|
@@ -0,0 +1,104 @@ | ||
name: Airflow Plugin | ||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- ".github/workflows/airflow-plugin.yml" | ||
- "metadata-ingestion-modules/airflow-plugin/**" | ||
- "metadata-ingestion/**" | ||
- "metadata-models/**" | ||
pull_request: | ||
branches: | ||
- "**" | ||
paths: | ||
- ".github/workflows/airflow-plugin.yml" | ||
- "metadata-ingestion-modules/airflow-plugin/**" | ||
- "metadata-ingestion/**" | ||
- "metadata-models/**" | ||
release: | ||
types: [published] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
airflow-plugin: | ||
runs-on: ubuntu-latest | ||
env: | ||
SPARK_VERSION: 3.0.3 | ||
DATAHUB_TELEMETRY_ENABLED: false | ||
strategy: | ||
matrix: | ||
include: | ||
# Note: this should be kept in sync with tox.ini. | ||
- python-version: "3.8" | ||
extra_pip_requirements: "apache-airflow~=2.1.4" | ||
extra_pip_extras: plugin-v1 | ||
- python-version: "3.8" | ||
extra_pip_requirements: "apache-airflow~=2.2.4" | ||
extra_pip_extras: plugin-v1 | ||
- python-version: "3.10" | ||
extra_pip_requirements: "apache-airflow~=2.4.3" | ||
extra_pip_extras: plugin-v2,test-airflow24 | ||
- python-version: "3.10" | ||
extra_pip_requirements: 'apache-airflow~=2.6.3 -c https://raw.githubusercontent.com/apache/airflow/constraints-2.6.3/constraints-3.10.txt' | ||
extra_pip_extras: plugin-v2 | ||
- python-version: "3.10" | ||
extra_pip_requirements: 'apache-airflow~=2.7.3 -c https://raw.githubusercontent.com/apache/airflow/constraints-2.7.3/constraints-3.10.txt' | ||
extra_pip_extras: plugin-v2 | ||
- python-version: "3.10" | ||
extra_pip_requirements: 'apache-airflow~=2.8.1 -c https://raw.githubusercontent.com/apache/airflow/constraints-2.8.1/constraints-3.10.txt' | ||
extra_pip_extras: plugin-v2 | ||
- python-version: "3.11" | ||
extra_pip_requirements: 'apache-airflow~=2.9.3 -c https://raw.githubusercontent.com/apache/airflow/constraints-2.9.3/constraints-3.11.txt' | ||
extra_pip_extras: plugin-v2 | ||
fail-fast: false | ||
steps: | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: "zulu" | ||
java-version: 17 | ||
- uses: gradle/actions/setup-gradle@v3 | ||
- uses: acryldata/sane-checkout-action@v3 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: "pip" | ||
- name: Install dependencies | ||
run: ./metadata-ingestion/scripts/install_deps.sh | ||
- name: Install airflow package and test (extras ${{ matrix.extra_pip_requirements }}) | ||
run: ./gradlew -Pextra_pip_requirements='${{ matrix.extra_pip_requirements }}' -Pextra_pip_extras='${{ matrix.extra_pip_extras }}' :metadata-ingestion-modules:airflow-plugin:build | ||
- name: pip freeze show list installed | ||
if: always() | ||
run: source metadata-ingestion-modules/airflow-plugin/venv/bin/activate && pip freeze | ||
- uses: actions/upload-artifact@v3 | ||
if: ${{ always() && matrix.python-version == '3.10' && matrix.extra_pip_requirements == 'apache-airflow>=2.7.0' }} | ||
with: | ||
name: Test Results (Airflow Plugin ${{ matrix.python-version}}) | ||
path: | | ||
**/build/reports/tests/test/** | ||
**/build/test-results/test/** | ||
**/junit.*.xml | ||
!**/binary/** | ||
- name: Upload coverage to Codecov | ||
if: always() | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
directory: . | ||
fail_ci_if_error: false | ||
flags: airflow,airflow-${{ matrix.extra_pip_extras }} | ||
name: pytest-airflow-${{ matrix.python-version }}-${{ matrix.extra_pip_requirements }} | ||
verbose: true | ||
|
||
event-file: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Upload | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Event File | ||
path: ${{ github.event_path }} |
Oops, something went wrong.