Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🌱 must build whole bundle for operator ci #334

Merged
merged 1 commit into from
Jun 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions .github/workflows/pr-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,24 +30,26 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout PR branch
uses: actions/checkout@v2

uses: actions/checkout@v4
- name: Ansible Lint
uses: ansible/ansible-lint-action@main
with:
path: "roles/"

build-operator:
build-operator-bundle:
needs: detect-changes
runs-on: ubuntu-latest
env:
IMG: ttl.sh/konveyor-operator-${{ github.sha }}:2h
BUNDLE_IMG: ttl.sh/konveyor-operator-bundle-${{ github.sha }}:2h
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: make docker-build docker-push
- run: make bundle-build bundle-push


run-ci:
needs: build-operator
needs: build-operator-bundle
uses: konveyor/ci/.github/workflows/global-ci-bundle.yml@main
with:
operator: ttl.sh/konveyor-operator-${{ github.sha }}:2h
operator_bundle: ttl.sh/konveyor-operator-bundle-${{ github.sha }}:2h
Loading