mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-21 20:08:54 +00:00
22.04 is the default today:
23da668261/README.md
Being more specific will avoid unexpected errors when Github updates the
default.
Signed-off-by: Aurélien Bombo <abombo@microsoft.com>
139 lines
4.3 KiB
YAML
139 lines
4.3 KiB
YAML
name: CI | Build kata-static tarball for amd64
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
stage:
|
|
required: false
|
|
type: string
|
|
default: test
|
|
tarball-suffix:
|
|
required: false
|
|
type: string
|
|
push-to-registry:
|
|
required: false
|
|
type: string
|
|
default: no
|
|
commit-hash:
|
|
required: false
|
|
type: string
|
|
target-branch:
|
|
required: false
|
|
type: string
|
|
default: ""
|
|
|
|
jobs:
|
|
build-asset:
|
|
runs-on: ubuntu-22.04
|
|
strategy:
|
|
matrix:
|
|
asset:
|
|
- agent
|
|
- agent-ctl
|
|
- cloud-hypervisor
|
|
- cloud-hypervisor-glibc
|
|
- coco-guest-components
|
|
- firecracker
|
|
- genpolicy
|
|
- kata-ctl
|
|
- kata-manager
|
|
- kernel
|
|
- kernel-confidential
|
|
- kernel-dragonball-experimental
|
|
- kernel-nvidia-gpu
|
|
- kernel-nvidia-gpu-confidential
|
|
- nydus
|
|
- ovmf
|
|
- ovmf-sev
|
|
- pause-image
|
|
- qemu
|
|
- qemu-snp-experimental
|
|
- stratovirt
|
|
- rootfs-image
|
|
- rootfs-image-confidential
|
|
- rootfs-initrd
|
|
- rootfs-initrd-confidential
|
|
- rootfs-initrd-mariner
|
|
- runk
|
|
- shim-v2
|
|
- trace-forwarder
|
|
- virtiofsd
|
|
stage:
|
|
- ${{ inputs.stage }}
|
|
exclude:
|
|
- asset: cloud-hypervisor-glibc
|
|
stage: release
|
|
steps:
|
|
- name: Login to Kata Containers quay.io
|
|
if: ${{ inputs.push-to-registry == 'yes' }}
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: quay.io
|
|
username: ${{ secrets.QUAY_DEPLOYER_USERNAME }}
|
|
password: ${{ secrets.QUAY_DEPLOYER_PASSWORD }}
|
|
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ inputs.commit-hash }}
|
|
fetch-depth: 0 # This is needed in order to keep the commit ids history
|
|
|
|
- name: Rebase atop of the latest target branch
|
|
run: |
|
|
./tests/git-helper.sh "rebase-atop-of-the-latest-target-branch"
|
|
env:
|
|
TARGET_BRANCH: ${{ inputs.target-branch }}
|
|
|
|
- name: Build ${{ matrix.asset }}
|
|
run: |
|
|
make "${KATA_ASSET}-tarball"
|
|
build_dir=$(readlink -f build)
|
|
# store-artifact does not work with symlink
|
|
mkdir -p kata-build && cp "${build_dir}"/kata-static-${KATA_ASSET}*.tar.* kata-build/.
|
|
env:
|
|
KATA_ASSET: ${{ matrix.asset }}
|
|
TAR_OUTPUT: ${{ matrix.asset }}.tar.gz
|
|
PUSH_TO_REGISTRY: ${{ inputs.push-to-registry }}
|
|
ARTEFACT_REGISTRY: ghcr.io
|
|
ARTEFACT_REGISTRY_USERNAME: ${{ github.actor }}
|
|
ARTEFACT_REGISTRY_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
|
|
TARGET_BRANCH: ${{ inputs.target-branch }}
|
|
RELEASE: ${{ inputs.stage == 'release' && 'yes' || 'no' }}
|
|
|
|
- name: store-artifact ${{ matrix.asset }}
|
|
if: ${{ matrix.stage != 'release' || (matrix.asset != 'agent' && matrix.asset != 'coco-guest-components' && matrix.asset != 'pause-image') }}
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: kata-artifacts-amd64-${{ matrix.asset }}${{ inputs.tarball-suffix }}
|
|
path: kata-build/kata-static-${{ matrix.asset }}.tar.xz
|
|
retention-days: 15
|
|
if-no-files-found: error
|
|
|
|
create-kata-tarball:
|
|
runs-on: ubuntu-22.04
|
|
needs: build-asset
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ inputs.commit-hash }}
|
|
fetch-depth: 0
|
|
- name: Rebase atop of the latest target branch
|
|
run: |
|
|
./tests/git-helper.sh "rebase-atop-of-the-latest-target-branch"
|
|
env:
|
|
TARGET_BRANCH: ${{ inputs.target-branch }}
|
|
- name: get-artifacts
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
pattern: kata-artifacts-amd64-*${{ inputs.tarball-suffix }}
|
|
path: kata-artifacts
|
|
merge-multiple: true
|
|
- name: merge-artifacts
|
|
run: |
|
|
./tools/packaging/kata-deploy/local-build/kata-deploy-merge-builds.sh kata-artifacts versions.yaml
|
|
- name: store-artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: kata-static-tarball-amd64${{ inputs.tarball-suffix }}
|
|
path: kata-static.tar.xz
|
|
retention-days: 15
|
|
if-no-files-found: error
|