From 2fc11f4795d8dc9a123120d301732f0b264b1d67 Mon Sep 17 00:00:00 2001 From: Nico Wagner Date: Wed, 30 Aug 2023 13:42:51 +0200 Subject: [PATCH] Update release workflow, pt.2 --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 21e8e4642..f3d7670cc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,7 @@ jobs: target: - { image: "ubuntu:22.04", triple: x86_64-unknown-linux-gnu, glibc: 2.35 } - { image: "ubuntu:20.04", triple: x86_64-unknown-linux-gnu, glibc: 2.31 } - - { image: "centos:centos8", triple: x86_64-unknown-linux-gnu, glibc: 2.28 } + - { image: "debian:10" triple: x86_64-unknown-linux-gnu, glibc: 2.28 } - { image: "centos:centos7", triple: x86_64-unknown-linux-gnu, glibc: 2.17 } container: image: ${{ matrix.target.image }} @@ -55,6 +55,9 @@ jobs: - name: "Install packages (Ubuntu)" if: ${{ startsWith(matrix.target.image, 'ubuntu') }} run: apt-get update && apt-get install curl build-essential -y + - name: "Install packages (Debian)" + if: ${{ startsWith(matrix.target.image, 'debian') }} + run: apt-get update && apt-get install curl build-essential -y - name: "Install packages (CentOS)" if: ${{ startsWith(matrix.target.image, 'centos') }} run: yum install gcc -y