summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey V. Lobanov <sergey@lobanov.in>2026-09-11 01:41:57 +0300
committerSergey V. Lobanov <sergey@lobanov.in>2026-09-11 20:58:01 +0300
commitb8af4865bd4c0bd33b895e9f5fe66bbe8ea33980 (patch)
tree88e10c6c50ac89719dd7d59c57d81397bf167e9c
parent1ecdecbf7f31b2bfdd6f0c55a777e71cd3dcf37b (diff)
downloadaccel-ppp-b8af4865bd4c0bd33b895e9f5fe66bbe8ea33980.tar.gz
accel-ppp-b8af4865bd4c0bd33b895e9f5fe66bbe8ea33980.zip
ci: remove debian11 as EoL, add ubuntu 26:04
-rw-r--r--.github/workflows/build-and-run.yml7
-rw-r--r--.github/workflows/run-tests.yml10
2 files changed, 10 insertions, 7 deletions
diff --git a/.github/workflows/build-and-run.yml b/.github/workflows/build-and-run.yml
index 9caf31cf..67c688d8 100644
--- a/.github/workflows/build-and-run.yml
+++ b/.github/workflows/build-and-run.yml
@@ -20,6 +20,9 @@ jobs:
- distro: ubuntu-24.04
pkg-distro: ubuntu24.04
cpack-type: Ubuntu24
+ - distro: ubuntu-26.04
+ pkg-distro: ubuntu26.04
+ cpack-type: Ubuntu24
runs-on: ${{ matrix.distro }}
steps:
- name: Set common vars
@@ -83,12 +86,12 @@ jobs:
matrix:
distro:
[
- "debian:11",
"debian:12",
"debian:13",
"debian:forky",
"ubuntu:22.04",
"ubuntu:24.04",
+ "ubuntu:26.04",
"ubuntu:devel"
]
runs-on: ubuntu-24.04
@@ -103,8 +106,8 @@ jobs:
debian:forky) DISTRO=debian13; CPACK_TYPE=Debian13 ;;
debian:13) DISTRO=debian13; CPACK_TYPE=Debian13 ;;
debian:12) DISTRO=debian12; CPACK_TYPE=Debian12 ;;
- debian:11) CPACK_TYPE=Debian11 ;;
ubuntu:devel) CPACK_TYPE=Ubuntu24 ; HEADERS_SUFFIX=generic ;;
+ ubuntu:26.04) CPACK_TYPE=Ubuntu24 ; HEADERS_SUFFIX=generic ;;
ubuntu:24.04) CPACK_TYPE=Ubuntu24 ; HEADERS_SUFFIX=generic ;;
ubuntu:22.04) CPACK_TYPE=Ubuntu22 ; HEADERS_SUFFIX=generic ;;
esac;
diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml
index 7ce55b6e..337e23df 100644
--- a/.github/workflows/run-tests.yml
+++ b/.github/workflows/run-tests.yml
@@ -16,6 +16,11 @@ jobs:
fail-fast: false
matrix:
include:
+ - distro: Ubuntu-26.04
+ image: https://cloud-images.ubuntu.com/resolute/current/resolute-server-cloudimg-amd64v3.img
+ untar: false
+ format: qcow2
+
- distro: Ubuntu-24.04
image: https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img
untar: false
@@ -36,11 +41,6 @@ jobs:
untar: true
format: raw
- - distro: Debian11
- image: https://cdimage.debian.org/images/cloud/bullseye/latest/debian-11-generic-amd64.tar.xz
- untar: true
- format: raw
-
steps:
- name: Check out repository code
uses: actions/checkout@v4