You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2022/06/25 15:45:21 UTC

[airflow] branch main updated: Remove selective checks from the "release workflow" (#24655)

This is an automated email from the ASF dual-hosted git repository.

potiuk 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 47f54b6099 Remove selective checks from the "release workflow" (#24655)
47f54b6099 is described below

commit 47f54b609983c6cb08553bb85245f2288deaf2dc
Author: Jarek Potiuk <ja...@polidea.com>
AuthorDate: Sat Jun 25 17:45:08 2022 +0200

    Remove selective checks from the "release workflow" (#24655)
    
    Missed that one too :(
---
 .github/workflows/release_dockerhub_image.yml | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/release_dockerhub_image.yml b/.github/workflows/release_dockerhub_image.yml
index cd5fe6e9ce..3259759cac 100644
--- a/.github/workflows/release_dockerhub_image.yml
+++ b/.github/workflows/release_dockerhub_image.yml
@@ -51,9 +51,17 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+      - name: "Setup python"
+        uses: actions/setup-python@v2
+        with:
+          # We do not have output from selective checks yet, so we need to hardcode python
+          python-version: 3.7
+          cache: 'pip'
+          cache-dependency-path: ./dev/breeze/setup*
+      - run: ./scripts/ci/install_breeze.sh
       - name: Selective checks
         id: selective-checks
-        run: ./scripts/ci/selective_ci_checks.sh
+        run: breeze selective-check
   release-images:
     timeout-minutes: 120
     name: "Release images: ${{ github.event.inputs.airflowVersion }}, ${{ matrix.python-version }}"