Skip to content

Commit

Permalink
Upgrade Ubuntu to 24.04 in CI jobs
Browse files Browse the repository at this point in the history
Signed-off-by: Sergey Vasilyev <[email protected]>
  • Loading branch information
nolar committed Nov 18, 2024
1 parent fbf896b commit 10b6d0b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
linters:
name: Linting and static analysis
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 5 # usually 1-2, rarely 3 mins (because of installations)
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
- install-extras: "uvloop"
python-version: "3.13"
name: Python ${{ matrix.python-version }} ${{ matrix.install-extras }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 5 # usually 2-3 mins
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
install-extras: [ "", "full-auth" ]
python-version: [ "pypy-3.8", "pypy-3.9", "pypy-3.10" ]
name: Python ${{ matrix.python-version }} ${{ matrix.install-extras }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
Expand All @@ -105,7 +105,7 @@ jobs:
matrix:
k3s: [latest, v1.31, v1.30, v1.29]
name: K3s ${{matrix.k3s}}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 10 # usually 4-5 mins
steps:
- uses: actions/checkout@v3
Expand All @@ -122,7 +122,7 @@ jobs:
coveralls-finish:
name: Finalize coveralls.io
needs: [unit-tests, pypy-tests, functional]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/setup-python@v4
- run: pip install coveralls
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/thorough.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
jobs:
linters:
name: Linting and static analysis
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 5 # usually 1-2, rarely 3 mins (because of installations)
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
- install-extras: "uvloop"
python-version: "3.12"
name: Python ${{ matrix.python-version }} ${{ matrix.install-extras }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 5 # usually 2-3 mins
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
install-extras: [ "", "full-auth" ]
python-version: [ "pypy-3.8", "pypy-3.9", "pypy-3.10" ]
name: Python ${{ matrix.python-version }} ${{ matrix.install-extras }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
Expand All @@ -109,7 +109,7 @@ jobs:
matrix:
k3s: [latest, v1.31, v1.30, v1.29]
name: K3s ${{matrix.k3s}}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 10 # usually 4-5 mins
steps:
- uses: actions/checkout@v3
Expand All @@ -129,7 +129,7 @@ jobs:
matrix:
k8s: [latest, v1.31.2, v1.30.6, v1.29.10]
name: K8s ${{matrix.k8s}}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 10 # usually 4-5 mins
env:
K8S: ${{ matrix.k8s }}
Expand All @@ -145,7 +145,7 @@ jobs:
coveralls-finish:
name: Finalize coveralls.io
needs: [unit-tests, pypy-tests, functional]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/setup-python@v4
- run: pip install coveralls
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
version: 2
formats: all
build:
os: ubuntu-22.04
os: ubuntu-24.04
tools:
python: "3"
python:
Expand Down

0 comments on commit 10b6d0b

Please sign in to comment.