Skip to content

Commit

Permalink
fix(ci): Remove container and downgrade to ubuntu 20
Browse files Browse the repository at this point in the history
This will keep minimum glibc version required to 2.31

Signed-off-by: Alexander Gil <[email protected]>
  • Loading branch information
pando85 committed Aug 24, 2023
1 parent be94d63 commit 982304a
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,16 +87,15 @@ jobs:
strategy:
fail-fast: false
matrix:
# use ubuntu 20.04 to keep minimum glibc version to 2.31
job:
- { os: ubuntu-22.04, target: arm-unknown-linux-gnueabihf, use-cross: true }
- { os: ubuntu-22.04, target: aarch64-unknown-linux-gnu, use-cross: true }
- { os: ubuntu-22.04, target: x86_64-unknown-linux-musl, use-cross: true }
- { os: ubuntu-22.04, target: x86_64-unknown-linux-gnu, container: quay.io/pypa/manylinux2014_x86_64}
- { os: ubuntu-20.04, target: arm-unknown-linux-gnueabihf, use-cross: true }
- { os: ubuntu-20.04, target: aarch64-unknown-linux-gnu, use-cross: true }
- { os: ubuntu-20.04, target: x86_64-unknown-linux-musl, use-cross: true }
- { os: ubuntu-20.04, target: x86_64-unknown-linux-gnu}
- { os: macos-12, target: x86_64-apple-darwin}
name: (${{ matrix.job.os }}) ${{ matrix.job.target }}
runs-on: ${{ matrix.job.os }}
# Use a container with GLIBC 2.17, make build compatible until that version
container: ${{ matrix.job.container }}
steps:
- name: Checkout source code
uses: actions/checkout@v3
Expand Down

0 comments on commit 982304a

Please sign in to comment.