-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to Strimzi 0.39.0 and move to GitHub Actions
Signed-off-by: Jakub Scholz <[email protected]>
- Loading branch information
Showing
4 changed files
with
69 additions
and
87 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Build Kafka Test Apps | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
env: | ||
DOCKER_REGISTRY: ghcr.io | ||
DOCKER_ORG: ${{ github.actor }} | ||
DOCKER_TAG: latest | ||
|
||
steps: | ||
# Checkout sources | ||
- uses: actions/checkout@v3 | ||
|
||
# Setup QEMU for multiplatform Docker builds | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
# Setup Docker credentials | ||
- name: Log in to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ${{ env.DOCKER_REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# Build the Container images | ||
- name: Build and push the containers for amd64 | ||
run: make docker_build docker_push docker_amend_manifest | ||
env: | ||
DOCKER_ARCHITECTURE: amd64 | ||
- name: Build and push the containers for arm64 | ||
run: make docker_build docker_push docker_amend_manifest | ||
env: | ||
DOCKER_ARCHITECTURE: arm64 | ||
|
||
# Push the container manifest | ||
- name: Push the container manifest | ||
run: make docker_push_manifest |
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
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