mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-10 12:22:36 +00:00
Merge pull request #7758 from fidencio/topic/gha-avoid-fail-fast-till-everything-is-ultra-stable
gha: Avoid "fail-fast" in tests that are known to be flaky
This commit is contained in:
commit
16a610d788
@ -12,7 +12,10 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
run-cri-containerd:
|
run-cri-containerd:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: true
|
# We can set this to true whenever we're 100% sure that
|
||||||
|
# the all the tests are not flaky, otherwise we'll fail
|
||||||
|
# all the tests due to a single flaky instance.
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
containerd_version: ['lts', 'active']
|
containerd_version: ['lts', 'active']
|
||||||
vmm: ['clh', 'qemu']
|
vmm: ['clh', 'qemu']
|
||||||
|
5
.github/workflows/run-metrics.yaml
vendored
5
.github/workflows/run-metrics.yaml
vendored
@ -32,7 +32,10 @@ jobs:
|
|||||||
run-metrics:
|
run-metrics:
|
||||||
needs: setup-kata
|
needs: setup-kata
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: true
|
# We can set this to true whenever we're 100% sure that
|
||||||
|
# the all the tests are not flaky, otherwise we'll fail
|
||||||
|
# all the tests due to a single flaky instance.
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
vmm: ['clh', 'qemu']
|
vmm: ['clh', 'qemu']
|
||||||
max-parallel: 1
|
max-parallel: 1
|
||||||
|
5
.github/workflows/run-nydus-tests.yaml
vendored
5
.github/workflows/run-nydus-tests.yaml
vendored
@ -12,7 +12,10 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
run-nydus:
|
run-nydus:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: true
|
# We can set this to true whenever we're 100% sure that
|
||||||
|
# the all the tests are not flaky, otherwise we'll fail
|
||||||
|
# all the tests due to a single flaky instance.
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
containerd_version: ['lts', 'active']
|
containerd_version: ['lts', 'active']
|
||||||
vmm: ['clh', 'qemu', 'dragonball']
|
vmm: ['clh', 'qemu', 'dragonball']
|
||||||
|
4
.github/workflows/static-checks.yaml
vendored
4
.github/workflows/static-checks.yaml
vendored
@ -15,6 +15,10 @@ jobs:
|
|||||||
static-checks:
|
static-checks:
|
||||||
runs-on: garm-ubuntu-2004
|
runs-on: garm-ubuntu-2004
|
||||||
strategy:
|
strategy:
|
||||||
|
# We can set this to true whenever we're 100% sure that
|
||||||
|
# the all the tests are not flaky, otherwise we'll fail
|
||||||
|
# all the tests due to a single flaky instance.
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
cmd:
|
cmd:
|
||||||
- "make vendor"
|
- "make vendor"
|
||||||
|
Loading…
Reference in New Issue
Block a user