forked from OpenLineage/OpenLineage
-
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.
Updated CircleCI config to use dynamic workflows (OpenLineage#606)
* Updated CircleCI config to use dynamic workflows Signed-off-by: Michael Collado <[email protected]> * Added workflow files and use yq to join Signed-off-by: Michael Collado <[email protected]> * Remove pointer references as they aren't handled by yq Signed-off-by: Michael Collado <[email protected]> * Add support for no-op builds for doc and proposal changes Signed-off-by: Michael Collado <[email protected]> * Updated comments in config.yml file Signed-off-by: Michael Collado <[email protected]> * Added New Integrations section to the CONTRIBUTING.md file Signed-off-by: Michael Collado <[email protected]>
- Loading branch information
1 parent
fcc2ea2
commit 94a3a48
Showing
10 changed files
with
748 additions
and
572 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
workflows: | ||
openlineage-integration-airflow: | ||
jobs: | ||
- unit-test-integration-common | ||
- build-integration-common: | ||
filters: | ||
branches: | ||
only: main | ||
build_tag: ".dev<< pipeline.number >>" | ||
requires: | ||
- unit-test-integration-common | ||
- unit-test-integration-airflow-1 | ||
- unit-test-integration-airflow-2 | ||
- integration-test-integration-airflow-1-10: | ||
context: integration-tests | ||
requires: | ||
- unit-test-integration-airflow-1 | ||
- unit-test-integration-common | ||
- unit-test-client-python | ||
filters: | ||
branches: | ||
ignore: /pull\/[0-9]+/ | ||
- integration-test-integration-airflow: | ||
matrix: | ||
parameters: | ||
airflow-image: ['apache/airflow:2.1.3-python3.7', 'apache/airflow:2.2.4-python3.7'] | ||
context: integration-tests | ||
requires: | ||
- unit-test-integration-airflow-2 | ||
- unit-test-integration-common | ||
- unit-test-client-python | ||
filters: | ||
branches: | ||
ignore: /pull\/[0-9]+/ | ||
- integration-test-integration-airflow-failure: | ||
context: integration-tests | ||
requires: | ||
- unit-test-integration-airflow-2 | ||
- unit-test-integration-common | ||
- unit-test-client-python | ||
filters: | ||
branches: | ||
ignore: /pull\/[0-9]+/ | ||
- build-integration-airflow: | ||
filters: | ||
branches: | ||
only: main | ||
build_tag: ".dev<< pipeline.number >>" | ||
requires: | ||
- integration-test-integration-airflow | ||
- workflow_complete: | ||
requires: | ||
- build-integration-airflow | ||
- integration-test-integration-airflow-failure | ||
- integration-test-integration-airflow | ||
- integration-test-integration-airflow-1-10 |
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,17 @@ | ||
workflows: | ||
openlineage-integration-dagster: | ||
jobs: | ||
- unit-test-integration-dagster: | ||
requires: | ||
- build-client-python | ||
- build-integration-dagster: | ||
filters: | ||
branches: | ||
only: main | ||
build_tag: ".dev<< pipeline.number >>" | ||
requires: | ||
- unit-test-integration-dagster | ||
- workflow_complete: | ||
requires: | ||
- build-integration-dagster | ||
- unit-test-integration-dagster |
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,11 @@ | ||
workflows: | ||
openlineage-integration-dbt: | ||
jobs: | ||
- build-integration-dbt: | ||
filters: | ||
branches: | ||
only: main | ||
build_tag: ".dev<< pipeline.number >>" | ||
- workflow_complete: | ||
requires: | ||
- build-integration-dbt |
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,23 @@ | ||
workflows: | ||
openlineage-integration-publish: | ||
jobs: | ||
- publish-snapshot-python: | ||
filters: | ||
branches: | ||
only: main | ||
context: release | ||
requires: | ||
- build-client-python | ||
- build-integration-common | ||
- build-integration-airflow | ||
- build-integration-dbt | ||
- build-integration-dagster | ||
- publish-spec: | ||
filters: | ||
branches: | ||
only: main | ||
context: release | ||
- workflow_complete: | ||
requires: | ||
- publish-snapshot-python | ||
- publish-spec |
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,15 @@ | ||
workflows: | ||
openlineage-integration-python: | ||
jobs: | ||
- unit-test-client-python | ||
- build-client-python: | ||
filters: | ||
branches: | ||
only: main | ||
build_tag: ".dev<< pipeline.number >>" | ||
requires: | ||
- unit-test-client-python | ||
- workflow_complete: | ||
requires: | ||
- build-client-python | ||
- unit-test-client-python |
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,29 @@ | ||
workflows: | ||
openlineage-java: | ||
jobs: | ||
- build-client-java | ||
- publish-snapshot-client-java: | ||
context: release | ||
requires: | ||
- build-client-java | ||
- build-integration-spark: | ||
matrix: | ||
parameters: | ||
spark-version: [ '2.4.1', '3.1.2' ] | ||
- integration-test-integration-spark: | ||
matrix: | ||
parameters: | ||
spark-version: [ '2.4.1', '3.1.2' ] | ||
requires: | ||
- build-integration-spark | ||
- publish-snapshot-integration-spark: | ||
filters: | ||
branches: | ||
only: main | ||
context: release | ||
requires: | ||
- integration-test-integration-spark | ||
- workflow_complete: | ||
requires: | ||
- publish-snapshot-integration-spark | ||
- integration-test-integration-spark |
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,7 @@ | ||
workflows: | ||
openlineage-proxy: | ||
jobs: | ||
- build-proxy-backend | ||
- workflow_complete: | ||
requires: | ||
- build-proxy-backend |
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