-
Notifications
You must be signed in to change notification settings - Fork 271
46 lines (37 loc) · 1023 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: build
on:
push:
branches: [master, ovirt-engine-4.5*]
pull_request:
branches: [master, ovirt-engine-4.5*]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- name: centos-stream-9
container-name: el9stream
pip-command: pip3
name: ${{ matrix.name }}
env:
ARTIFACTS_DIR: exported-artifacts
container:
image: quay.io/ovirt/buildcontainer:${{ matrix.container-name }}
steps:
- name: Install required PyPI packages
run: ${{ matrix.pip-command }} install "ansible-lint>=6.0.0,<7.0.0"
- name: Checkout sources
uses: ovirt/checkout-action@main
- name: Perform build
run: |
.automation/build-rpm.sh $ARTIFACTS_DIR
- name: Create DNF repository
run: |
createrepo_c $ARTIFACTS_DIR
- name: Upload artifacts
uses: ovirt/upload-rpms-action@main
with:
directory: ${{ env.ARTIFACTS_DIR }}