mirror of
https://github.com/netdata/netdata.git
synced 2025-04-13 17:19:11 +00:00
Switch to Ubuntu 22.04 runner images for CI build jobs. (#19619)
The 24.04 runner images are apparently having serious stability issues, especially for ARM runners, and these are likely causing most of our current CI issues.
This commit is contained in:
parent
667d67a07d
commit
93032aba5c
1 changed files with 4 additions and 4 deletions
8
.github/data/distros.yml
vendored
8
.github/data/distros.yml
vendored
|
@ -25,22 +25,22 @@ arch_order: # sort order for per-architecture jobs in CI
|
|||
arch_data: # Mapping of per-architecture matrix behavior.
|
||||
amd64: &amd64
|
||||
qemu: false
|
||||
runner: ubuntu-24.04
|
||||
runner: &x86-runner ubuntu-22.04
|
||||
x86_64: *amd64
|
||||
i386: *amd64
|
||||
armhf: &arm
|
||||
qemu: false
|
||||
runner: ubuntu-24.04-arm
|
||||
runner: &arm-runner ubuntu-22.04-arm
|
||||
armhfp: *arm
|
||||
armv6l: *arm
|
||||
armv7l: *arm
|
||||
arm64: &arm64
|
||||
qemu: false
|
||||
runner: ubuntu-24.04-arm
|
||||
runner: *arm-runner
|
||||
aarch64: *arm64
|
||||
ppc64le:
|
||||
qemu: true
|
||||
runner: ubuntu-24.04-arm
|
||||
runner: *arm-runner
|
||||
static_arches: # Static build architectures
|
||||
- x86_64
|
||||
- armv6l
|
||||
|
|
Loading…
Add table
Reference in a new issue