Skip to content

Commit

Permalink
Migrating to Ubuntu/20.04 to support older libc
Browse files Browse the repository at this point in the history
  • Loading branch information
bazhenov committed Dec 21, 2023
1 parent 0dae000 commit a4b9e11
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:

jobs:
lint:
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
Expand All @@ -28,7 +28,7 @@ jobs:
test:
strategy:
matrix:
os: [ubuntu-22.04, macos-12, windows-2022]
os: [ubuntu-20.04, macos-12, windows-2022]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand All @@ -40,7 +40,7 @@ jobs:
pre-release:
needs: [lint, test]
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
Expand All @@ -53,7 +53,7 @@ jobs:
strategy:
matrix:
include:
- os: ubuntu-22.04
- os: ubuntu-20.04
target: x86_64-unknown-linux-gnu
- os: macos-12
target: x86_64-apple-darwin
Expand Down

0 comments on commit a4b9e11

Please sign in to comment.