diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2022-11-20 18:54:41 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2022-11-20 18:54:41 +0300 |
commit | 915f3bcb59d12c0b61267c6899e186ee3096a5b1 (patch) | |
tree | 087e7b4206d7326ac9800421fd8523dcbe1ad2ec /.github | |
parent | b92d663430198b5a3a3696b684f93e39be237f78 (diff) | |
download | sciteco-915f3bcb59d12c0b61267c6899e186ee3096a5b1.tar.gz |
Github workflows: no longer try to build on deprecated runners like ubuntu-18.04 and macos-10.15
As much as I like to support older systems, this will otherwise suddenly and unexpectedly break
CI and nightly builds in the near future...
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 c21a7ee..9108b5a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: ubuntu: strategy: matrix: - os: [ubuntu-18.04, ubuntu-20.04] + os: [ubuntu-20.04, ubuntu-22.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 6fd432e..97129fa 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -10,7 +10,7 @@ jobs: debian-packages: strategy: matrix: - os: [ubuntu-18.04, ubuntu-20.04] + os: [ubuntu-20.04, ubuntu-22.04] runs-on: ${{ matrix.os }} @@ -54,7 +54,7 @@ jobs: path: debian-temp/*.deb macos: - runs-on: macos-10.15 + runs-on: macos-11 steps: |