From 1e94247c6fe4fa1a9fedaa265267d2e4a5e9aa5a Mon Sep 17 00:00:00 2001 From: zero-pytagoras <91202914+zero-pytagoras@users.noreply.github.com> Date: Wed, 21 Feb 2024 12:05:04 +0200 Subject: [PATCH] adding RockyLinux to build.yml --- .github/workflows/build.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8eda282..19a11b0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,10 +12,14 @@ jobs: container: 'ubuntu:latest' artifact: 'ubuntu' - - os: ubuntu-latest + - os: alpine-latest container: 'alpine:latest' artifact: 'alpine' - + + - os: rockylinux + container: 'rockylinux:9' # they do not have latest, but 9 will be covered for all the defaults for all latest 9 version + artifact: 'rockylinux' + - os: windows-latest artifact: 'windows' @@ -29,7 +33,13 @@ jobs: run: | apt update apt -y install git make pbzip2 binutils bzip2 zstd gnupg - + + - name: Install RockyLinux packages + if: matrix.container == 'rockylinux:9' + run: | + dnf groupinstall -y "Development Tools" "RPM Development Tools" + dnf install -y zstd binutils binutils-devel gnupg2 pbzip2 + - name: Install Alpine packages if: matrix.container == 'alpine:latest' run: apk add --no-cache bash git make libarchive-tools gnupg coreutils binutils bzip2 zstd