build(deps): Bump ubi9/python-312 (#52) #2
This file contains hidden or 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: Build and push SRE tool images | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- sre/tools/kubernetes-topology-mapper/* | ||
- sre/tools/astronomy-shop-checkout-service/* | ||
jobs: | ||
topology-monitor: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Login to Quay.io | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: quay.io | ||
username: ${{ secrets.QUAY_USERNAME }} | ||
password: ${{ secrets.QUAY_ROBOT_TOKEN }} | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Build and push Kubernetes Topology Mapper | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: sre/tools/kubernetes-topology-mapper | ||
platforms: | ||
- linux/amd64 | ||
Check failure on line 30 in .github/workflows/sre-build-push-images.yaml
|
||
- linux/arm64 | ||
push: true | ||
tags: | ||
- it-bench/topology-monitor:0.0.1 | ||
- it-bench/topology-monitor:latest | ||
unsupported-checkout-service: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Login to Quay.io | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: quay.io | ||
username: ${{ secrets.QUAY_USERNAME }} | ||
password: ${{ secrets.QUAY_ROBOT_TOKEN }} | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Build and push Unsupported Astronomy Shop Checkout Service image (amd) | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: sre/tools/astronomy-shop-checkout-service | ||
platforms: | ||
- linux/amd64 | ||
push: true | ||
tags: | ||
- it-bench/unsupported-checkout-service-amd64:0.0.1 | ||
- it-bench/unsupported-checkout-service-amd64:latest | ||
- name: Build and push Unsupported Astronomy Shop Checkout Service image (arm) | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: sre/tools/astronomy-shop-checkout-service | ||
platforms: | ||
- linux/arm64 | ||
push: true | ||
tags: | ||
- it-bench/unsupported-checkout-service-arm64:0.0.1 | ||
- it-bench/unsupported-checkout-service-arm64:latest |