Skip to content

containers: drop el8, fc36,fc37,fc38 and add fc40,fc41 #641

containers: drop el8, fc36,fc37,fc38 and add fc40,fc41

containers: drop el8, fc36,fc37,fc38 and add fc40,fc41 #641

Workflow file for this run

# SPDX-FileCopyrightText: Red Hat, Inc.
# SPDX-License-Identifier: GPL-2.0-or-later
name: CI
on:
- push
- pull_request
env:
EXPORT_DIR: exported-artifacts
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- distro: centos-9
env: py39
- distro: centos-9
env: py311
- distro: centos-9
env: py312
- distro: fedora-40
env: py312
- distro: fedora-41
env: py313
container:
image: quay.io/ovirt/ovirt-imageio-test:${{matrix.distro}}
# Required to create loop devices.
options: --privileged
steps:
- uses: actions/checkout@v4
- name: Run tests
run: ci/test.sh ${{matrix.env}}
rpm:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
distro:
- centos-9
- fedora-40
- fedora-41
container: quay.io/ovirt/ovirt-imageio-test:${{matrix.distro}}
steps:
- uses: actions/checkout@v4
with:
# We need the latest tag for creating rpms.
fetch-depth: 0
- name: Build rpms
run: ./ci/rpm.sh
- name: Upload artidacts
uses: ovirt/upload-rpms-action@main
with:
directory: ${{env.EXPORT_DIR}}