mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-07-18 17:33:02 +00:00
Merge pull request #10123 from fidencio/topic/re-enable-arm-ci
ci: re-enable arm CI
This commit is contained in:
commit
b93a0642e0
19
.github/workflows/ci.yaml
vendored
19
.github/workflows/ci.yaml
vendored
@ -36,6 +36,25 @@ jobs:
|
|||||||
target-branch: ${{ inputs.target-branch }}
|
target-branch: ${{ inputs.target-branch }}
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
|
build-kata-static-tarball-arm64:
|
||||||
|
uses: ./.github/workflows/build-kata-static-tarball-arm64.yaml
|
||||||
|
with:
|
||||||
|
tarball-suffix: -${{ inputs.tag }}
|
||||||
|
commit-hash: ${{ inputs.commit-hash }}
|
||||||
|
target-branch: ${{ inputs.target-branch }}
|
||||||
|
|
||||||
|
publish-kata-deploy-payload-arm64:
|
||||||
|
needs: build-kata-static-tarball-arm64
|
||||||
|
uses: ./.github/workflows/publish-kata-deploy-payload-arm64.yaml
|
||||||
|
with:
|
||||||
|
tarball-suffix: -${{ inputs.tag }}
|
||||||
|
registry: ghcr.io
|
||||||
|
repo: ${{ github.repository_owner }}/kata-deploy-ci
|
||||||
|
tag: ${{ inputs.tag }}-arm64
|
||||||
|
commit-hash: ${{ inputs.commit-hash }}
|
||||||
|
target-branch: ${{ inputs.target-branch }}
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
build-kata-static-tarball-s390x:
|
build-kata-static-tarball-s390x:
|
||||||
uses: ./.github/workflows/build-kata-static-tarball-s390x.yaml
|
uses: ./.github/workflows/build-kata-static-tarball-s390x.yaml
|
||||||
with:
|
with:
|
||||||
|
37
.github/workflows/payload-after-push.yaml
vendored
37
.github/workflows/payload-after-push.yaml
vendored
@ -17,13 +17,13 @@ jobs:
|
|||||||
target-branch: ${{ github.ref_name }}
|
target-branch: ${{ github.ref_name }}
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
# build-assets-arm64:
|
build-assets-arm64:
|
||||||
# uses: ./.github/workflows/build-kata-static-tarball-arm64.yaml
|
uses: ./.github/workflows/build-kata-static-tarball-arm64.yaml
|
||||||
# with:
|
with:
|
||||||
# commit-hash: ${{ github.sha }}
|
commit-hash: ${{ github.sha }}
|
||||||
# push-to-registry: yes
|
push-to-registry: yes
|
||||||
# target-branch: ${{ github.ref_name }}
|
target-branch: ${{ github.ref_name }}
|
||||||
# secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
build-assets-s390x:
|
build-assets-s390x:
|
||||||
uses: ./.github/workflows/build-kata-static-tarball-s390x.yaml
|
uses: ./.github/workflows/build-kata-static-tarball-s390x.yaml
|
||||||
@ -52,16 +52,16 @@ jobs:
|
|||||||
target-branch: ${{ github.ref_name }}
|
target-branch: ${{ github.ref_name }}
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
# publish-kata-deploy-payload-arm64:
|
publish-kata-deploy-payload-arm64:
|
||||||
# needs: build-assets-arm64
|
needs: build-assets-arm64
|
||||||
# uses: ./.github/workflows/publish-kata-deploy-payload-arm64.yaml
|
uses: ./.github/workflows/publish-kata-deploy-payload-arm64.yaml
|
||||||
# with:
|
with:
|
||||||
# commit-hash: ${{ github.sha }}
|
commit-hash: ${{ github.sha }}
|
||||||
# registry: quay.io
|
registry: quay.io
|
||||||
# repo: kata-containers/kata-deploy-ci
|
repo: kata-containers/kata-deploy-ci
|
||||||
# tag: kata-containers-latest-arm64
|
tag: kata-containers-latest-arm64
|
||||||
# target-branch: ${{ github.ref_name }}
|
target-branch: ${{ github.ref_name }}
|
||||||
# secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
publish-kata-deploy-payload-s390x:
|
publish-kata-deploy-payload-s390x:
|
||||||
needs: build-assets-s390x
|
needs: build-assets-s390x
|
||||||
@ -87,8 +87,7 @@ jobs:
|
|||||||
|
|
||||||
publish-manifest:
|
publish-manifest:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# needs: [publish-kata-deploy-payload-amd64, publish-kata-deploy-payload-arm64, publish-kata-deploy-payload-s390x, publish-kata-deploy-payload-ppc64le]
|
needs: [publish-kata-deploy-payload-amd64, publish-kata-deploy-payload-arm64, publish-kata-deploy-payload-s390x, publish-kata-deploy-payload-ppc64le]
|
||||||
needs: [publish-kata-deploy-payload-amd64, publish-kata-deploy-payload-s390x, publish-kata-deploy-payload-ppc64le]
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
@ -142,6 +142,7 @@ function _publish_multiarch_manifest()
|
|||||||
for tag in ${IMAGE_TAGS[@]}; do
|
for tag in ${IMAGE_TAGS[@]}; do
|
||||||
docker manifest create ${registry}:${tag} \
|
docker manifest create ${registry}:${tag} \
|
||||||
--amend ${registry}:${tag}-amd64 \
|
--amend ${registry}:${tag}-amd64 \
|
||||||
|
--amend ${registry}:${tag}-arm64 \
|
||||||
--amend ${registry}:${tag}-s390x \
|
--amend ${registry}:${tag}-s390x \
|
||||||
--amend ${registry}:${tag}-ppc64le
|
--amend ${registry}:${tag}-ppc64le
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user