diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-04-16 18:05:39 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-04-16 18:15:05 +0300 |
commit | f1ea16ded3dc3cf372f7dc68112ef9b7e2c9ca53 (patch) | |
tree | 5001565fab0257428eb3e0cf71c69edfca7dbe82 /.github | |
parent | 77adddb6d19a69b25c4077af8b3d878c4ad9c439 (diff) | |
download | sciteco-f1ea16ded3dc3cf372f7dc68112ef9b7e2c9ca53.tar.gz |
CI/Nightly builds: Ubuntu 20.04 runners have been disabled
* We can therefore no longer provide 20.04 nightly builds.
Perhaps I will manually build binary releases for the v2.4.0 release for the last time.
The PPA will still provide 20.04 of course.
* The AppImages are consequently also built based on the Ubuntu 22.04 packages,
which are now the oldest supported ones.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
-rw-r--r-- | .github/workflows/nightly.yml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6eeb38f..2f2b8f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: ubuntu: strategy: matrix: - os: [ubuntu-20.04, ubuntu-24.04] + os: [ubuntu-22.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 16527eb..5d0c13a 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, ubuntu-24.04] + os: [ubuntu-22.04, ubuntu-24.04] runs-on: ${{ matrix.os }} @@ -49,7 +49,7 @@ jobs: - name: Build AppImages # Should always be on the oldest supported Ubuntu - if: matrix.os == 'ubuntu-20.04' + if: matrix.os == 'ubuntu-22.04' env: GH_TOKEN: ${{ github.token }} run: | |