@cryptotaxi247 / netdata-1 / commits / e71a8bf29

Assorted CI updates and fixes (#22427)

* Update GHA images for builds from Ubuntu 22.04 to 24.04. * Fix exclude option in tarball build job.

Austin S. Hemmelgarn committed May 6, 2026 at 10:22 UTC e71a8bf29bb3f3d56b27add38192aefa87441252
2 files changed +3 -3
.github/data/distros.yml
+2 -2
@@ -23,12 +23,12 @@ arch_order: # sort order for per-architecture jobs in CI
23 arch_data: # Mapping of per-architecture matrix behavior.
24 amd64: &amd64
25 qemu: false
26 - runner: &x86-runner ubuntu-22.04
26 + runner: &x86-runner ubuntu-24.04
27 x86_64: *amd64
28 i386: *amd64
29 armhf: &arm
30 qemu: false
31 - runner: &arm-runner ubuntu-22.04-arm
31 + runner: &arm-runner ubuntu-24.04-arm
32 armhfp: *arm
33 armv6l: *arm
34 armv7l: *arm
.github/workflows/build.yml
+1 -1
@@ -174,7 +174,7 @@ jobs:
174 run: |
175 mkdir -p artifacts/
176 tar --create --file "artifacts/netdata-$(git describe).tar.gz" \
177 - --sort=name --posix --auto-compress --exclude=artifacts/ --exclude=.git \
177 + --sort=name --posix --auto-compress --exclude=artifacts --exclude=.git \
178 --exclude=.gitignore --exclude=.gitattributes --exclude=.gitmodules \
179 --transform "s/^\\.\\//netdata-$(git describe)\\//" --verbose .
180 cd artifacts/