Skip to content

Commit

Permalink
fix(ci): upgrade Ubuntu image to 24.04
Browse files Browse the repository at this point in the history
For some reason the `cargo +beta clippy` step is failing because `libsqlite3-sys` starts requiring Glibc >= 2.39 but I don't have time to figure out why and I can't reproduce it in a clean environment.
  • Loading branch information
abonander committed Mar 4, 2025
1 parent 7a2a94e commit c3fd645
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/sqlx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ on:
jobs:
format:
name: Format
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check

check:
name: Check
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
runtime: [ async-std, tokio ]
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
check-minimal-versions:
name: Check build using minimal versions
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Setup Rust
Expand All @@ -65,7 +65,7 @@ jobs:

test:
name: Unit Tests
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
sqlite:
name: SQLite
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
runtime: [ async-std, tokio ]
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
postgres:
name: Postgres
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
postgres: [ 17, 13 ]
Expand Down Expand Up @@ -284,7 +284,7 @@ jobs:

mysql:
name: MySQL
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
mysql: [ 8 ]
Expand Down Expand Up @@ -373,7 +373,7 @@ jobs:

mariadb:
name: MariaDB
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
mariadb: [ verylatest, 11_4, 10_11, 10_4 ]
Expand Down

0 comments on commit c3fd645

Please sign in to comment.