Skip to content

Commit

Permalink
Downgrade build-minimum CI job Ubuntu version
Browse files Browse the repository at this point in the history
Our build-minimum workflow started failing because ubuntu-latest is now
Ubuntu 24.04 and it does not come with a static libreadline installed by
default (or so).
Switch back to 22.04 to bring things back to working.
  • Loading branch information
d-e-s-o committed Feb 23, 2025
1 parent 1b41c6b commit c1b6235
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (C) 2022-2024 Daniel Mueller <[email protected]>
# Copyright (C) 2022-2025 Daniel Mueller <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

name: Test
Expand Down Expand Up @@ -38,7 +38,7 @@ jobs:
cargo build --profile=${{ matrix.profile }} --bins --tests --examples --features=test
build-minimum:
name: Build using minimum versions of dependencies
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install Nightly Rust
Expand Down

0 comments on commit c1b6235

Please sign in to comment.