🌱 run global ci in PR checks #89
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Release and Publish to Community Operators | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'The semantic version of the release (e.g. v1.2.3)' | |
required: true | |
previous_version: | |
description: 'The semantic version of the previous release (e.g. v1.2.2)' | |
required: false | |
type: string | |
branch: | |
description: 'The branch to create the release from (defaults to main)' | |
required: false | |
default: 'main' | |
operator_channel: | |
description: 'Channel to publish the new operator to' | |
required: true | |
type: string | |
github_name: | |
description: 'Your full name' | |
required: true | |
type: string | |
github_email: | |
description: 'Your e-mail address' | |
required: true | |
type: string | |
jobs: | |
# TODO(djzager): This is where we would want to do some integration testing | |
# test: | |
# ... | |
# might consider creating "rc" releases, building and testing those before | |
# publishing a release. | |
release-bases: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: true | |
steps: | |
- name: java-analyzer-bundle | |
uses: konveyor/release-tools/create-release@main | |
with: | |
version: ${{ inputs.version }} | |
prev_version: ${{ inputs.previous_version }} | |
repository: konveyor/java-analyzer-bundle | |
ref: ${{ inputs.branch }} | |
github_token: ${{ secrets.GH_TOKEN }} | |
- name: wait for java-analyzer-bundle | |
run: | | |
#!/bin/bash | |
while ! docker pull quay.io/konveyor/jdtls-server-base:${{ inputs.version }} &> /dev/null; do | |
sleep 3m | |
done | |
docker image inspect quay.io/konveyor/jdtls-server-base:${{ inputs.version }} | |
- name: analyzer-lsp | |
uses: konveyor/release-tools/create-release@main | |
with: | |
version: ${{ inputs.version }} | |
prev_version: ${{ inputs.previous_version }} | |
repository: konveyor/analyzer-lsp | |
ref: ${{ inputs.branch }} | |
github_token: ${{ secrets.GH_TOKEN }} | |
- name: wait for analyzer-lsp | |
run: | | |
#!/bin/bash | |
while ! docker pull quay.io/konveyor/analyzer-lsp:${{ inputs.version }} &> /dev/null; do | |
sleep 3m | |
done | |
docker image inspect quay.io/konveyor/analyzer-lsp:${{ inputs.version }} | |
- name: windup-shim | |
uses: konveyor/release-tools/create-release@main | |
with: | |
version: ${{ inputs.version }} | |
prev_version: ${{ inputs.previous_version }} | |
repository: konveyor/windup-shim | |
ref: ${{ inputs.branch }} | |
github_token: ${{ secrets.GH_TOKEN }} | |
- name: wait for windup-shim | |
run: | | |
#!/bin/bash | |
while ! docker pull quay.io/konveyor/windup-shim:${{ inputs.version }} &> /dev/null; do | |
sleep 3m | |
done | |
docker image inspect quay.io/konveyor/windup-shim:${{ inputs.version }} | |
- name: tackle2-addon-analyzer | |
uses: konveyor/release-tools/create-release@main | |
with: | |
version: ${{ inputs.version }} | |
prev_version: ${{ inputs.previous_version }} | |
repository: konveyor/tackle2-addon-analyzer | |
ref: ${{ inputs.branch }} | |
github_token: ${{ secrets.GH_TOKEN }} | |
- run: | | |
#!/bin/bash | |
while ! docker pull quay.io/konveyor/tackle2-addon-analyzer:${{ inputs.version }} &> /dev/null; do | |
sleep 3m | |
done | |
docker image inspect quay.io/konveyor/tackle2-addon-analyzer:${{ inputs.version }} | |
release-components: | |
runs-on: ubuntu-20.04 | |
needs: release-bases | |
strategy: | |
matrix: | |
projects: | |
- repo: konveyor/tackle2-hub | |
image: konveyor/tackle2-hub | |
- repo: konveyor/tackle2-ui | |
image: konveyor/tackle2-ui | |
- repo: konveyor/tackle2-addon | |
image: konveyor/tackle2-addon | |
- repo: konveyor/operator | |
image: konveyor/tackle2-operator | |
- repo: konveyor/tackle-keycloak-theme | |
image: konveyor/tackle-keycloak-init | |
fail-fast: true | |
steps: | |
- uses: konveyor/release-tools/create-release@main | |
with: | |
version: ${{ inputs.version }} | |
prev_version: ${{ inputs.previous_version }} | |
repository: ${{ matrix.projects.repo }} | |
ref: ${{ inputs.branch }} | |
github_token: ${{ secrets.GH_TOKEN }} | |
- run: | | |
#!/bin/bash | |
while ! docker pull quay.io/${{ matrix.projects.image }}:${{ inputs.version }} &> /dev/null; do | |
sleep 3m | |
done | |
docker image inspect quay.io/${{ matrix.projects.image }}:${{ inputs.version }} | |
test: | |
name: Test Konveyor | |
needs: release-components | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: konveyor/ci/.github/workflows/global-ci-bundle.yml@main | |
with: | |
operator: quay.io/konveyor/tackle2-operator:${{ inputs.version }} | |
tackle_hub: quay.io/konveyor/tackle2-hub:${{ inputs.version }} | |
keycloack_init: quay.io/konveyor/tackle-keycloak-init:${{ inputs.version }} | |
tackle_ui: quay.io/konveyor/tackle2-ui:${{ inputs.version }} | |
addon_admin: quay.io/konveyor/tackle2-addon:${{ inputs.version }} | |
addon_analyzer: quay.io/konveyor/tackle2-addon-analyzer:${{ inputs.version }} | |
publish: | |
name: Build and Push Manifest | |
needs: release-components | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout Push to Registry action | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ inputs.branch }} | |
- name: Run migrations | |
run: bash ./tools/konveyor-operator-publish-commands.sh | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
GITHUB_USER: ${{ secrets.GH_USER }} | |
QUAY_ROBOT: ${{ secrets.QUAY_PUBLISH_ROBOT }} | |
QUAY_TOKEN: ${{ secrets.QUAY_PUBLISH_TOKEN }} | |
OPERATOR_SEMVER: ${{ inputs.version }} | |
OPERATOR_CHANNEL: ${{ inputs.operator_channel }} | |
PREV_OPERATOR_SEMVER: ${{ inputs.previous_version }} | |
GITHUB_NAME: ${{ inputs.github_name }} | |
GITHUB_EMAIL: ${{ inputs.github_email }} |