This is an automated email from the ASF dual-hosted git repository.
jedcunningham pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 014031a8a6 Do not run compatibility checks if we only build
openlineage (#30912)
014031a8a6 is described below
commit 014031a8a61fc52a2c8deb7fbf28acfa6a144317
Author: Jarek Potiuk <[email protected]>
AuthorDate: Thu Apr 27 18:05:49 2023 +0200
Do not run compatibility checks if we only build openlineage (#30912)
---
.github/workflows/ci.yml | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 00025d8009..1687833cab 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -822,7 +822,11 @@ jobs:
run: >
breeze release-management install-provider-packages
--use-airflow-version 2.3.0
--airflow-constraints-reference constraints-2.3.0 --run-in-parallel
- if: needs.build-info.outputs.affected-providers-list-as-string != ''
+ # Make sure to skip the run if the only provider to be installed has
been removed
+ # in the previous step
+ if: >
+ needs.build-info.outputs.affected-providers-list-as-string != '' &&
+ needs.build-info.outputs.affected-providers-list-as-string !=
'openlineage'
- name: "Fix ownership"
run: breeze ci fix-ownership
if: always()