Post Release 2.7.1 #150
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: build | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: centos-stream-8 | |
shortcut: cs8 | |
container-name: el8stream | |
- name: centos-stream-9 | |
shortcut: cs9 | |
container-name: el9stream | |
name: ${{ matrix.name }} | |
container: | |
image: quay.io/ovirt/buildcontainer:${{ matrix.container-name }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install testing dependencies | |
run: | | |
pip3 install isort pycodestyle pyflakes | |
- name: Mark git repo as safe | |
run: git config --global --add safe.directory $(pwd) | |
# TODO: Split to separate steps? | |
- run: automation/check-patch.sh | |
- name: Upload artifacts | |
uses: ovirt/upload-rpms-action@main | |
with: | |
directory: exported-artifacts |