Skip to content

Commit

Permalink
Update release workflow, pt.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nwagner84 committed Aug 30, 2023
1 parent 2982d21 commit 2fc11f4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
Expand Down

0 comments on commit 2fc11f4

Please sign in to comment.