From 24bf1a2fb08696d89bbffeb20477ac36655b1e00 Mon Sep 17 00:00:00 2001 From: Pavel Siska Date: Thu, 9 Oct 2025 13:29:06 +0200 Subject: [PATCH] CI: Copr-release - change default container from ol8 to ol9 --- .github/workflows/copr.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/copr.yaml b/.github/workflows/copr.yaml index f3ecebb..8e7642c 100644 --- a/.github/workflows/copr.yaml +++ b/.github/workflows/copr.yaml @@ -8,7 +8,7 @@ on: jobs: release-package-on-copr: runs-on: ubuntu-latest - container: oraclelinux:8 + container: oraclelinux:9 steps: - name: Install git run: dnf install -y git @@ -18,14 +18,15 @@ jobs: uses: ./.github/actions/install-dependencies - name: Install copr-cli run: | - dnf install -y dnf-plugins-core epel-release + dnf install -y dnf-plugins-core + dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm dnf -y copr enable @CESNET/NEMEA dnf install -y copr-cli - name: Mark github workspace as safe run: git config --system --add safe.directory $PWD - name: make rpm run: | - cmake -B build -DTELEMETRY_PACKAGE_BUILDER=ON + cmake -B build -DTELEMETRY_PACKAGE_BUILDER=ON make rpm - name: Create copr config run: |