Skip to content

Commit

Permalink
✨ import global ci workflow (#418)
Browse files Browse the repository at this point in the history
This will import the global CI workflow, which runs the end to end tests
defined in https://github.com/konveyor/go-konveyor-tests (for now, it
will be expanded to more suites as they become quick and stable enough).
This helps to ensure that individual components aren't breaking the
project as a whole, which should help to smooth out the release process.

Signed-off-by: Fabian von Feilitzsch <fabian@fabianism.us>
  • Loading branch information
fabianvf committed Aug 28, 2023
1 parent e3f8fa9 commit 6a361d0
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,21 @@ jobs:
with:
tackle-hub-image: tackle2-hub:latest
tackle-image-pull-policy: IfNotPresent

- name: save image
run: |
IMG=quay.io/konveyor/tackle2-hub:latest make docker-build
docker save -o /tmp/tackle2-hub.tar quay.io/konveyor/tackle2-hub:latest
- name: Upload image as artifact
uses: actions/upload-artifact@v3
with:
name: tackle2-hub
path: /tmp/tackle2-hub.tar
retention-days: 1

test-integration:
needs: test-e2e
uses: konveyor/ci/.github/workflows/global-ci.yml@main
with:
component_name: tackle2-hub

0 comments on commit 6a361d0

Please sign in to comment.