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 570d88b069 Run constraint branch checkout in non-canary build (#35088)
570d88b069 is described below

commit 570d88b0695dda2ef110f47b6abdc03592b19692
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Fri Oct 20 18:36:58 2023 +0200

    Run constraint branch checkout in non-canary build (#35088)
    
    The constraint branch checkout needs to happen always when there
    is an "upgrade-to-newer-dependencies" build, not only wnen there
    is a "canary" main build, Otherwise when we attempt to update to
    diff constraints vs. the current ones the diff fails.
    
    Only the Commit and Push which are the folowing steps should
    happen exclusively in the canary run.
---
 .github/workflows/ci.yml | 2 --
 1 file changed, 2 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d9c136ba24..1e258b1857 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -1736,10 +1736,8 @@ jobs:
       - name: "Set constraints branch name"
         id: constraints-branch
         run: ./scripts/ci/constraints/ci_branch_constraints.sh >> 
${GITHUB_OUTPUT}
-        if: needs.build-info.outputs.canary-run == 'true'
       - name: Checkout ${{ steps.constraints-branch.outputs.branch }}
         uses: actions/checkout@v3
-        if: needs.build-info.outputs.canary-run == 'true'
         with:
           path: "repo"
           ref: ${{ steps.constraints-branch.outputs.branch }}

Reply via email to