Skip to content

CI

CI #26

Workflow file for this run

name: CI
on:
pull_request:
workflow_dispatch:
schedule:
# at 8:00 every 1st of the month
- cron: 0 8 1 * *
jobs:
test:
name: "📦 Build & install"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
container:
- "registry.fedoraproject.org/fedora:latest"
- "registry.fedoraproject.org/fedora:rawhide"
- "quay.io/centos/centos:stream8"
- "quay.io/centos/centos:stream9"
container:
image: ${{ matrix.container }}
steps:
- name: Base setup
run: |
dnf --setopt install_weak_deps=False install -y \
dnf-plugins-core \
git-core \
rpm-build \
sudo
dnf remove -y subscription-manager-rhsm-certificates
git config --global user.email "[email protected]"
git config --global user.name "Github Actions"
- name: Setup EPEL 8
if: ${{ endsWith(matrix.container, 'stream8') }}
run: |
dnf config-manager --set-enabled powertools
dnf install -y epel-release epel-next-release
- name: Setup EPEL 9
if: ${{ endsWith(matrix.container, 'stream9') }}
run: |
dnf config-manager --set-enabled crb
dnf install -y epel-release epel-next-release
- name: Install tito
run: |
dnf --setopt install_weak_deps=False install -y \
tito
- uses: actions/checkout@v3
# This step is required so Tito can properly read git history
# See https://github.com/actions/checkout/issues/766
- name: Trust git repository path
run: |
git config --global --add safe.directory '*'
- name: Install RPM build dependencies
run: |
dnf --setopt install_weak_deps=False builddep -y \
--spec ./subscription-manager-rhsm-certificates.spec
- name: tito build --install
run: |
mkdir tito
tito build --offline --test --rpm --install --output=tito
- name: Archive artifacts
uses: actions/upload-artifact@v3
with:
name: artifacts
path: |
tito/