Skip to content

Commit

Permalink
fixup! Better fix for constraint generation dependency for PROD build
Browse files Browse the repository at this point in the history
  • Loading branch information
potiuk committed Mar 28, 2024
1 parent 428366a commit e2b1f07
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/build-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ jobs:
github.event.pull_request.head.sha ||
github.sha
}}"
if: github.repository == 'apache/airflow'
steps:
- name: "Cleanup repo"
shell: bash
Expand Down Expand Up @@ -166,10 +165,6 @@ jobs:
secrets: inherit
needs: [build-info]
uses: ./.github/workflows/ci-image-build.yml
# Only run this it if the PR comes from fork, otherwise build will be done "in-PR-workflow"
if: |
needs.build-info.outputs.ci-image-build == 'true' &&
github.event.pull_request.head.repo.full_name != 'apache/airflow'
with:
runs-on: '["ubuntu-22.04"]'
do-build: ${{ needs.build-info.outputs.ci-image-build }}
Expand Down Expand Up @@ -206,10 +201,6 @@ jobs:
secrets: inherit
needs: [build-info, generate-constraints]
uses: ./.github/workflows/prod-image-build.yml
# Only run this it if the PR comes from fork, otherwise build will be done "in-PR-workflow"
if: |
needs.build-info.outputs.prod-image-build == 'true' &&
github.event.pull_request.head.repo.full_name != 'apache/airflow'
with:
runs-on: '["ubuntu-22.04"]'
build-type: "Regular"
Expand Down

0 comments on commit e2b1f07

Please sign in to comment.