Skip to content

Commit

Permalink
CI: Update to ubuntu 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavid committed Aug 18, 2024
1 parent 4cd3f6b commit 6e76b45
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
ruff:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: Checkout pygit2
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
strategy:
matrix:
include:
- os: ubuntu-22.04
- os: ubuntu-24.04
python-version: 3.9
- os: ubuntu-22.04
- os: ubuntu-24.04
python-version: '3.13-dev'
- os: ubuntu-22.04
- os: ubuntu-24.04
python-version: 'pypy3.9'
- os: macos-latest
python-version: 3.9
Expand All @@ -43,7 +43,7 @@ jobs:
LIBSSH2_VERSION=1.11.0 LIBGIT2_VERSION=1.8.1 /bin/sh build.sh test
aarch64:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -52,15 +52,15 @@ jobs:
uses: uraimo/run-on-arch-action@v2
with:
arch: aarch64
distro: ubuntu22.04
distro: ubuntu24.04
install: |
apt-get update -q -y
apt-get install -q -y cmake libssl-dev python3-dev python3-venv wget
run: |
LIBSSH2_VERSION=1.11.0 LIBGIT2_VERSION=1.8.1 /bin/sh build.sh test
s390x:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: github.ref == 'refs/heads/master'
steps:
- name: Checkout
Expand All @@ -70,7 +70,7 @@ jobs:
uses: uraimo/run-on-arch-action@v2
with:
arch: s390x
distro: ubuntu22.04
distro: ubuntu24.04
install: |
apt-get update -q -y
apt-get install -q -y cmake libssl-dev python3-dev python3-venv wget
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, macos-12]
os: [ubuntu-24.04, macos-12]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
pypi:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
needs: [build_wheels]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- uses: actions/download-artifact@v3
Expand Down

0 comments on commit 6e76b45

Please sign in to comment.