diff options
-rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
-rw-r--r-- | .github/workflows/nightly.yml | 4 | ||||
-rwxr-xr-x | AppImage/curses.yml | 6 | ||||
-rwxr-xr-x | AppImage/gtk.yml | 6 |
4 files changed, 9 insertions, 9 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: | diff --git a/AppImage/curses.yml b/AppImage/curses.yml index f682cf1..675b66c 100755 --- a/AppImage/curses.yml +++ b/AppImage/curses.yml @@ -5,12 +5,12 @@ ingredients: - sciteco-curses dist: focal sources: - - deb http://archive.ubuntu.com/ubuntu/ focal main universe + - deb http://archive.ubuntu.com/ubuntu/ jammy main universe # ppas: # - robin-haberkorn/sciteco script: - - wget -c "https://github.com/rhaberkorn/sciteco/releases/download/nightly/sciteco-common_nightly_ubuntu-20.04_all.deb" - - wget -c "https://github.com/rhaberkorn/sciteco/releases/download/nightly/sciteco-curses_nightly_ubuntu-20.04_amd64.deb" + - wget -c "https://github.com/rhaberkorn/sciteco/releases/download/nightly/sciteco-common_nightly_ubuntu-22.04_all.deb" + - wget -c "https://github.com/rhaberkorn/sciteco/releases/download/nightly/sciteco-curses_nightly_ubuntu-22.04_amd64.deb" post_script: - dpkg -I sciteco-curses*.deb | grep "Version:" | cut -d':' -f2 | cut -d'+' -f1 | sed 's/^[ ]*//g' >VERSION diff --git a/AppImage/gtk.yml b/AppImage/gtk.yml index a8f19ba..0ead771 100755 --- a/AppImage/gtk.yml +++ b/AppImage/gtk.yml @@ -9,12 +9,12 @@ ingredients: - libglib2.0-0 dist: focal sources: - - deb http://archive.ubuntu.com/ubuntu/ focal main universe + - deb http://archive.ubuntu.com/ubuntu/ jammy main universe # ppas: # - robin-haberkorn/sciteco script: - - wget -c "https://github.com/rhaberkorn/sciteco/releases/download/nightly/sciteco-common_nightly_ubuntu-20.04_all.deb" - - wget -c "https://github.com/rhaberkorn/sciteco/releases/download/nightly/sciteco-gtk_nightly_ubuntu-20.04_amd64.deb" + - wget -c "https://github.com/rhaberkorn/sciteco/releases/download/nightly/sciteco-common_nightly_ubuntu-22.04_all.deb" + - wget -c "https://github.com/rhaberkorn/sciteco/releases/download/nightly/sciteco-gtk_nightly_ubuntu-22.04_amd64.deb" post_script: - dpkg -I sciteco-gtk*.deb | grep "Version:" | cut -d':' -f2 | cut -d'+' -f1 | sed 's/^[ ]*//g' >VERSION |