Merge pull request #572 from Xynnn007/fix-kbs-config #99
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: Build and Push CoCoAS / RVPS Image | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build_and_push: | |
permissions: | |
packages: write | |
strategy: | |
fail-fast: false | |
matrix: | |
instance: | |
- ubuntu-latest | |
- s390x | |
tag: | |
- coco-as-grpc | |
- coco-as-restful | |
- rvps | |
include: | |
- docker_file: attestation-service/docker/as-grpc/Dockerfile | |
tag: coco-as-grpc | |
name: gRPC CoCo-AS | |
- docker_file: attestation-service/docker/as-restful/Dockerfile | |
tag: coco-as-restful | |
name: RESTful CoCo-AS | |
- docker_file: rvps/docker/Dockerfile | |
tag: rvps | |
name: RVPS | |
runs-on: ${{ matrix.instance }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GHCR Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build ${{ matrix.name }} Container Image | |
run: | | |
commit_sha=${{ github.sha }} | |
arch=$(uname -m) | |
DOCKER_BUILDKIT=1 docker build -f "${{ matrix.docker_file }}" --push --build-arg ARCH="${arch}" \ | |
-t "ghcr.io/confidential-containers/staged-images/${{ matrix.tag }}:${commit_sha}-${arch}" \ | |
-t "ghcr.io/confidential-containers/staged-images/${{ matrix.tag }}:latest-${arch}" . | |
publish_multi_arch_image: | |
needs: build_and_push | |
permissions: | |
packages: write | |
strategy: | |
fail-fast: false | |
matrix: | |
tag: | |
- coco-as-grpc | |
- coco-as-restful | |
- rvps | |
include: | |
- tag: coco-as-grpc | |
name: gRPC CoCo-AS | |
- tag: coco-as-restful | |
name: RESTful CoCo-AS | |
- tag: rvps | |
name: RVPS | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GHCR Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Publish Multi-arch Image for ${{ matrix.name }} | |
run: | | |
commit_sha=${{ github.sha }} | |
docker manifest create "ghcr.io/confidential-containers/staged-images/${{ matrix.tag }}:${commit_sha}" \ | |
--amend "ghcr.io/confidential-containers/staged-images/${{ matrix.tag }}:${commit_sha}-s390x" \ | |
--amend "ghcr.io/confidential-containers/staged-images/${{ matrix.tag }}:${commit_sha}-x86_64" | |
docker manifest push "ghcr.io/confidential-containers/staged-images/${{ matrix.tag }}:${commit_sha}" | |
docker manifest create "ghcr.io/confidential-containers/staged-images/${{ matrix.tag }}:latest" \ | |
--amend "ghcr.io/confidential-containers/staged-images/${{ matrix.tag }}:latest-s390x" \ | |
--amend "ghcr.io/confidential-containers/staged-images/${{ matrix.tag }}:latest-x86_64" | |
docker manifest push "ghcr.io/confidential-containers/staged-images/${{ matrix.tag }}:latest" |