Skip to content

Commit

Permalink
Update GH Actions to use Quay CR
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Styk <[email protected]>
  • Loading branch information
StykMartin committed Jun 12, 2024
1 parent 1b82c6a commit 1395e32
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 31 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/merge-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@ jobs:
strategy:
fail-fast: false
matrix:
container: ["fedora:38", "fedora:39"]
image:
- quay.io/fedora/fedora:38
- quay.io/fedora/fedora:39
- quay.io/fedora/fedora:40
runs-on: ubuntu-latest
container:
image: registry.fedoraproject.org/${{ matrix.container }}
image: ${{ matrix.image }}

steps:
- uses: actions/checkout@v1
Expand All @@ -37,11 +40,13 @@ jobs:
strategy:
fail-fast: false
matrix:
container: ["fedora:38", "fedora:39"]
image:
- quay.io/fedora/fedora:38
- quay.io/fedora/fedora:39
- quay.io/fedora/fedora:40
runs-on: ubuntu-latest
container:
image: registry.fedoraproject.org/${{ matrix.container }}

image: ${{ matrix.image }}
steps:
- uses: actions/checkout@v1
- name: Install deps
Expand All @@ -59,4 +64,3 @@ jobs:
with:
name: valgrind.out
path: /home/runner/work/valgrind.out

82 changes: 57 additions & 25 deletions .github/workflows/review-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,32 @@ jobs:
strategy:
fail-fast: false
matrix:
version: ["38", "39", "rawhide"]
image:
- quay.io/fedora/fedora:38
- quay.io/fedora/fedora:39
- quay.io/fedora/fedora:40
- quay.io/fedora/fedora:rawhide
runs-on: ubuntu-latest
container:
image: registry.fedoraproject.org/fedora:${{ matrix.version }}
options: --security-opt seccomp=unconfined
image: ${{ matrix.image }}

steps:
- uses: actions/checkout@v1
- name: Set DNF command
run: |
if [[ "${{ matrix.image }}" == *"rawhide"* ]]; then
echo "DNF_COMMAND=dnf5" >> $GITHUB_ENV
echo "BUILDDEP_SPEC_ARG=" >> $GITHUB_ENV
else
echo "DNF_COMMAND=dnf" >> $GITHUB_ENV
echo "BUILDDEP_SPEC_ARG=--spec" >> $GITHUB_ENV
fi
- name: Install deps
run: |
dnf install -y 'dnf-command(builddep)' git-daemon python3-flask python3-requests python3-pytest python3-six procps-ng
${{ env.DNF_COMMAND }} install -y '${{ env.DNF_COMMAND }}-command(builddep)' git-daemon python3-flask python3-requests python3-pytest python3-six procps-ng
- name: Install restraint deps
run: |
dnf builddep --spec specfiles/restraint-upstream.spec -y
${{ env.DNF_COMMAND }} builddep ${{ env.BUILDDEP_SPEC_ARG }} specfiles/restraint-upstream.spec -y
- name: Run tests
run: |
set -o pipefail
Expand All @@ -35,20 +47,32 @@ jobs:
strategy:
fail-fast: false
matrix:
version: ["38", "39", "rawhide"]
image:
- quay.io/fedora/fedora:38
- quay.io/fedora/fedora:39
- quay.io/fedora/fedora:40
- quay.io/fedora/fedora:rawhide
runs-on: ubuntu-latest
container:
image: registry.fedoraproject.org/fedora:${{ matrix.version }}
options: --security-opt seccomp=unconfined
image: ${{ matrix.image }}

steps:
- uses: actions/checkout@v1
- name: Set DNF command
run: |
if [[ "${{ matrix.image }}" == *"rawhide"* ]]; then
echo "DNF_COMMAND=dnf5" >> $GITHUB_ENV
echo "BUILDDEP_SPEC_ARG=" >> $GITHUB_ENV
else
echo "DNF_COMMAND=dnf" >> $GITHUB_ENV
echo "BUILDDEP_SPEC_ARG=--spec" >> $GITHUB_ENV
fi
- name: Install deps
run: |
dnf install -y 'dnf-command(builddep)' valgrind git-daemon procps-ng
${{ env.DNF_COMMAND }} install -y '${{ env.DNF_COMMAND }}-command(builddep)' valgrind git-daemon procps-ng
- name: Install restraint deps
run: |
dnf builddep --spec specfiles/restraint-upstream.spec -y
${{ env.DNF_COMMAND }} builddep ${{ env.BUILDDEP_SPEC_ARG }} specfiles/restraint-upstream.spec -y
- name: Run valgrind
run: |
set -o pipefail
Expand All @@ -64,36 +88,45 @@ jobs:
strategy:
fail-fast: false
matrix:
container: ["fedora:38", "fedora:39", "fedora:rawhide", "centos:7"]
image:
- quay.io/fedora/fedora:38
- quay.io/fedora/fedora:39
- quay.io/fedora/fedora:40
- quay.io/fedora/fedora:rawhide
- quay.io/centos/centos:centos7
container:
image: ${{ matrix.container }}
options: --security-opt seccomp=unconfined
image: ${{ matrix.image }}

steps:
- name: Set DNF command
run: |
if [[ "${{ matrix.image }}" == *"rawhide"* ]]; then
echo "DNF_COMMAND=dnf5" >> $GITHUB_ENV
echo "BUILDDEP_SPEC_ARG=" >> $GITHUB_ENV
else
echo "DNF_COMMAND=dnf" >> $GITHUB_ENV
echo "BUILDDEP_SPEC_ARG=--spec" >> $GITHUB_ENV
fi
- name: Enable EPEL
run: |
yum install -y epel-release
if: contains(matrix.container, 'centos')
if: contains(matrix.image, 'centos')
- name: Install Git client (Fedora)
run: |
dnf install -y git
if: contains(matrix.container, 'fedora')
${{ env.DNF_COMMAND }} install -y git
if: contains(matrix.image, 'fedora')
- name: Install Git client (CentOS)
run: |
yum install -y https://repo.ius.io/ius-release-el7.rpm
yum install -y git236-core
if: contains(matrix.container, 'centos:7')
if: contains(matrix.image, 'centos7')
- uses: actions/checkout@v3
- name: Install deps
run: |
yum install -y dnf 'dnf-command(builddep)' tito
- name: Enable PowerTools
run: |
yum config-manager --set-enabled powertools
if: contains(matrix.container, 'centos:8')
yum install -y ${{ env.DNF_COMMAND }} '${{ env.DNF_COMMAND }}-command(builddep)' tito
- name: Install restraint deps for static build
run: |
dnf builddep -y --spec restraint.spec
${{ env.DNF_COMMAND }} builddep -y ${{ env.BUILDDEP_SPEC_ARG }} restraint.spec
- name: Mark git directories safe
run: |
git config --global --add safe.directory '*'
Expand Down Expand Up @@ -121,7 +154,7 @@ jobs:
- uses: actions/checkout@v3
- name: Install deps
run: |
yum install -y dnf 'dnf-command(builddep)' tito
yum install -y ${{ env.DNF_COMMAND }} 'dnf-command(builddep)' tito
- name: Enable PowerTools
run: |
yum config-manager --set-enabled powertools
Expand All @@ -139,4 +172,3 @@ jobs:
- name: Tito Build
run: |
tito build --rpm --test

0 comments on commit 1395e32

Please sign in to comment.