Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to Ubuntu 24.04 CI runner #527

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
os: windows-2022
cmake-args:
- name: Linux x86_64
os: ubuntu-22.04
os: ubuntu-24.04
cmake-args:
- name: macOS universal
os: macOS-14
Expand Down Expand Up @@ -61,19 +61,19 @@ jobs:
version: "3.12"
cmake-env:
- name: Linux x86_64
os: ubuntu-22.04
os: ubuntu-24.04
version: "3.9"
cmake-env:
- name: Linux x86_64
os: ubuntu-22.04
os: ubuntu-24.04
version: "3.10"
cmake-env:
- name: Linux x86_64
os: ubuntu-22.04
os: ubuntu-24.04
version: "3.11"
cmake-env:
- name: Linux x86_64
os: ubuntu-22.04
os: ubuntu-24.04
version: "3.12"
cmake-env:
- name: macOS universal
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
timeout-minutes: 10

name: Python sdist
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -138,7 +138,7 @@ jobs:

pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [build-python-wheel, build-python-sdist]
if: github.repository_owner == 'SleipnirGroup' && github.ref == 'refs/heads/main'
environment:
Expand All @@ -162,7 +162,7 @@ jobs:

build-wasm:
name: Wasm
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
coverage:
timeout-minutes: 10
name: "Coverage"
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ concurrency:
jobs:
doxygen:
name: "Doxygen"
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ concurrency:
jobs:
wpiformat:
name: "wpiformat"
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:

tidy:
name: "clang-tidy"
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sanitizers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
cmake-flags: -DCMAKE_BUILD_TYPE=Ubsan -DBUILD_PYTHON=OFF
ctest-env:
name: "${{ matrix.name }}"
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: mkdir build
Expand Down
Loading