From 7f3208638425768905855f6c08eba8ad789ea8be Mon Sep 17 00:00:00 2001 From: Daniel Hilst Selli <392820+dhilst@users.noreply.github.com> Date: Tue, 2 Dec 2025 16:23:29 -0300 Subject: [PATCH] build: Add rockylinux github action Commented it out for now. The github_action_xcat_test has debian commands in it and need to be generalized before running on EL. Signed-off-by: Daniel Hilst Selli <392820+dhilst@users.noreply.github.com> --- .github/workflows/xcat_test.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/xcat_test.yml b/.github/workflows/xcat_test.yml index a5022db46..095b731ca 100644 --- a/.github/workflows/xcat_test.yml +++ b/.github/workflows/xcat_test.yml @@ -10,3 +10,17 @@ jobs: run: sudo apt-get install -y fakeroot reprepro devscripts debhelper libcapture-tiny-perl libjson-perl libsoap-lite-perl libdbi-perl libcgi-pm-perl quilt openssh-server dpkg looptools genometools software-properties-common - name: Run tests run: perl github_action_xcat_test.pl + + # Note: github_action_xcat_test.pl is debian dependent, we + # need to generalize it before running on EL + # xcat_pr_test_el10: + # runs-on: ubuntu-latest + # container: + # image: rockylinux/rockylinux:10 + # timeout-minutes: 60 + # steps: + # - uses: actions/checkout@v4 + # - name: Install dependencies + # run: dnf install -y fakeroot perl-Capture-Tiny perl-JSON perl-SOAP-Lite perl-DBI perl-CGI quilt openssh looptools + # - name: Run tests + # run: perl github_action_xcat_test.pl