mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-01 07:47:15 +00:00
Merge pull request #9765 from wainersm/disable_failing_jobs
CI: disable jobs that failed > 50% on nightly CI recently - part 1
This commit is contained in:
commit
2b8cdd9ff2
24
.github/actionlint.yaml
vendored
Normal file
24
.github/actionlint.yaml
vendored
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# Copyright (c) 2024 Red Hat
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
#
|
||||||
|
# Configuration file with rules for the actionlint tool.
|
||||||
|
#
|
||||||
|
self-hosted-runner:
|
||||||
|
# Labels of self-hosted runner that linter should ignore
|
||||||
|
labels:
|
||||||
|
- arm64-builder
|
||||||
|
- garm-ubuntu-2004
|
||||||
|
- garm-ubuntu-2004-smaller
|
||||||
|
- garm-ubuntu-2204
|
||||||
|
- garm-ubuntu-2304
|
||||||
|
- garm-ubuntu-2304-smaller
|
||||||
|
- garm-ubuntu-2204-smaller
|
||||||
|
- k8s-ppc64le
|
||||||
|
- metrics
|
||||||
|
- ppc64le
|
||||||
|
- sev
|
||||||
|
- sev-snp
|
||||||
|
- s390x
|
||||||
|
- s390x-large
|
||||||
|
- tdx
|
9
.github/workflows/basic-ci-amd64.yaml
vendored
9
.github/workflows/basic-ci-amd64.yaml
vendored
@ -176,6 +176,8 @@ jobs:
|
|||||||
vmm:
|
vmm:
|
||||||
- clh # cloud-hypervisor
|
- clh # cloud-hypervisor
|
||||||
- qemu
|
- qemu
|
||||||
|
# TODO: enable me when https://github.com/kata-containers/kata-containers/issues/9763 is fixed
|
||||||
|
if: false
|
||||||
runs-on: garm-ubuntu-2204-smaller
|
runs-on: garm-ubuntu-2204-smaller
|
||||||
env:
|
env:
|
||||||
KATA_HYPERVISOR: ${{ matrix.vmm }}
|
KATA_HYPERVISOR: ${{ matrix.vmm }}
|
||||||
@ -211,7 +213,12 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
vmm: ['clh', 'qemu']
|
vmm:
|
||||||
|
- clh
|
||||||
|
- qemu
|
||||||
|
exclude:
|
||||||
|
# TODO: enable with clh when https://github.com/kata-containers/kata-containers/issues/9764 is fixed
|
||||||
|
- vmm: clh
|
||||||
runs-on: garm-ubuntu-2304
|
runs-on: garm-ubuntu-2304
|
||||||
env:
|
env:
|
||||||
GOPATH: ${{ github.workspace }}
|
GOPATH: ${{ github.workspace }}
|
||||||
|
@ -26,6 +26,10 @@ jobs:
|
|||||||
include:
|
include:
|
||||||
- container_engine: containerd
|
- container_engine: containerd
|
||||||
containerd_version: lts
|
containerd_version: lts
|
||||||
|
exclude:
|
||||||
|
# TODO: enable with containerd when https://github.com/kata-containers/kata-containers/issues/9761 is fixed
|
||||||
|
- container_engine: containerd
|
||||||
|
vmm: qemu
|
||||||
runs-on: garm-ubuntu-2204-smaller
|
runs-on: garm-ubuntu-2204-smaller
|
||||||
env:
|
env:
|
||||||
CONTAINER_ENGINE: ${{ matrix.container_engine }}
|
CONTAINER_ENGINE: ${{ matrix.container_engine }}
|
||||||
|
Loading…
Reference in New Issue
Block a user