-
Notifications
You must be signed in to change notification settings - Fork 120
68 lines (56 loc) · 1.75 KB
/
tito.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: tito
on:
pull_request:
workflow_dispatch:
jobs:
tito:
name: "tito"
strategy:
fail-fast: false
matrix:
include:
- name: "CentOS 7"
image: "quay.io/centos/centos:centos7"
runs-on: ubuntu-latest
container:
image: ${{ matrix.image }}
steps:
- name: Enable EPEL repository
run: |
yum install -y epel-release
- name: Install core packages
run: |
yum install -y \
git-core dnf-plugins-core rpm-build sudo which make
- name: Checkout repository
uses: actions/checkout@v3
# We need to initiate the repository manually because Actions fallback
# to REST API with Git < 2.18; CentOS 7/RHEL 7 have 1.8.
# See https://github.com/actions/checkout#checkout-v3
# Trust is required so Tito can properly read git history
# See https://github.com/actions/checkout/issues/766
- name: Initiate new git repository
run: |
git config --global user.email "[email protected]"
git config --global user.name "RHSM for RHEL 7 at GitHub Actions"
git init
git add .
git commit -m "Detached commit"
git config --global --add safe.directory '*'
- name: Install packages
run: |
yum install -y npm
npm install -g yarn
yum-builddep -y subscription-manager.spec
- name: Install tito
run: |
yum install -y tito
- name: Build the package
run: |
tito build --output=tito/ --test --rpm
- name: Upload RPMs
uses: actions/upload-artifact@v3
with:
name: RPMs from tito (${{ matrix.name }})
path: tito/
retention-days: 7