From f5584cf67bb572e859bdc67f2b9ddc1d822e6588 Mon Sep 17 00:00:00 2001 From: Marcel Nijenhof Date: Sat, 28 Sep 2024 14:06:53 +0200 Subject: [PATCH] Rockylinux 9 toegevoegd aan pipeline --- .gitea/workflows/compile.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.gitea/workflows/compile.yml b/.gitea/workflows/compile.yml index 6a6dc5d..3d13e0f 100644 --- a/.gitea/workflows/compile.yml +++ b/.gitea/workflows/compile.yml @@ -4,6 +4,22 @@ on: - push jobs: + rockylinux-9-compile: + runs-on: rockylinyx9 + dm + steps: + - name: Aanpassen lokale yum repo + run: sed -i -e 's@^mirrorlist=@#mirrorlist=@' -e 's@#baseurl=http://dl.rockylinux.org/$contentdir@baseurl=https://marceln.org/os/Linux/distr/rocky@' /etc/yum.repos.d/*repo + - name: Install dependecies + run: dnf install -y nodejs gcc make git-core + - name: Check out repository code + uses: actions/checkout@v3 + - name: Compile + run: make + - uses: actions/upload-artifact@v3 + with: + name: x86_64-fedora-38-wait + path: wait Fedora-40-compile: runs-on: fedora-40 steps: