diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-03-22 15:41:24 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-03-22 15:41:24 +0300 |
commit | 064f05f7f651f84fe31b4d65eefac22b80309190 (patch) | |
tree | 2b7582d4d6ee959a70f759bd6c8392aeeb52c0e7 /.github/workflows | |
parent | ab35f6618bc8beb4543cbc7c62332f82d7d5699c (diff) | |
download | sciteco-064f05f7f651f84fe31b4d65eefac22b80309190.tar.gz |
build nightlies on Ubuntu 24.04 as well
* Also run CI on 24.04.
* The Ubuntu 20.04 runner is deprecated soon until 1. April 2025,
but for the time being we keep supporting it as well.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
-rw-r--r-- | .github/workflows/nightly.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83c40bc..ea5e8c2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: ubuntu: strategy: matrix: - os: [ubuntu-20.04, ubuntu-22.04] + os: [ubuntu-20.04, ubuntu-24.04] compiler: ['CC=gcc CXX=g++', 'CC=clang CXX=clang++'] interface: [ncurses, gtk] diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 35645ba..a24ea3d 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -10,7 +10,7 @@ jobs: debian-packages: strategy: matrix: - os: [ubuntu-20.04, ubuntu-22.04] + os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04] runs-on: ${{ matrix.os }} |