Skip to content

Commit

Permalink
Bump CI to ubuntu-24.04
Browse files Browse the repository at this point in the history
CI fails to install g++-13 on older ubuntu versions.
  • Loading branch information
pdgendt committed Aug 30, 2024
1 parent 99fcaf4 commit 2dca052
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/config_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ permissions: read-all
jobs:
checker-config-coverage:
name: "Config coverage of checkers"
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions: read-all
jobs:
build:
name: Build pypi package
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-20.04, macos-latest, windows-2019]
os: [ubuntu-24.04, macos-latest, windows-2019]

steps:
- uses: actions/setup-python@v4
Expand All @@ -71,7 +71,7 @@ jobs:
path: ./

- name: "Install run-time dependencies (Linux)"
if: ${{ matrix.os == 'ubuntu-20.04' }}
if: ${{ matrix.os == 'ubuntu-24.04' }}
run:
sudo apt-get update && sudo apt-get install g++-13 clang clang-tidy cppcheck

Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
# publish:
# name: Publish pypi package
# if: github.event_name == 'release'
# runs-on: ubuntu-20.04
# runs-on: ubuntu-24.04
# needs: test
# steps:
# - uses: actions/download-artifact@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions: read-all
jobs:
build:
name: Build snap package
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v2
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
lint:
name: Linters (pylint, pycodestyle)

runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v2
Expand All @@ -25,7 +25,7 @@ jobs:

tools:
name: Tools (report-converter, etc.)
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
analyzer:
name: Analyzer
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v2
Expand All @@ -107,7 +107,7 @@ jobs:

common:
name: Common libraries
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v2
Expand All @@ -126,7 +126,7 @@ jobs:

web:
name: Web
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

services:
postgres:
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:

gui:
name: GUI
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

strategy:
matrix:
Expand Down

0 comments on commit 2dca052

Please sign in to comment.