From 597e092774ae2519e1783ea36d8efd1905ca6888 Mon Sep 17 00:00:00 2001 From: Noa Date: Tue, 13 Dec 2022 18:14:20 -0600 Subject: [PATCH] CI: Build -gnu targets on ubuntu-20.04 (#607) This commit pins it to 20.04, so the glibc version required by the release binaries can be run on docker image `rust:1.65` which uses glibc 2.31. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c11ec2d6..b4b46e1c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,7 @@ jobs: matrix: include: - target: x86_64-unknown-linux-gnu - os: ubuntu-latest + os: ubuntu-20.04 debug_features: [ rustls, pkg-config ] - target: x86_64-apple-darwin os: macos-latest @@ -49,7 +49,7 @@ jobs: os: ubuntu-latest use-cross: true - target: aarch64-unknown-linux-gnu - os: ubuntu-latest + os: ubuntu-20.04 use-cross: true runs-on: ${{ matrix.os }}