-
-
Notifications
You must be signed in to change notification settings - Fork 418
60 lines (46 loc) · 1.32 KB
/
pkgbuild.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
#
# Verify on CI/GHA that package building works.
#
# TODO: Currently, this supports RPM-based systems only.
# By adjusting a few details, it can be made work
# for other distribution types as well.
#
name: Test packaging
on:
# On which repository actions to trigger the build.
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allow job to be triggered manually.
workflow_dispatch:
# Cancel in-progress jobs when pushing to the same branch.
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
tests:
runs-on: "ubuntu-latest"
strategy:
# Run all jobs to completion (false), or cancel
# all jobs once the first one fails (true).
fail-fast: false
# Define a list of build targets. The labels should match the
# items within the `services` section of `docker-compose.yml`.
matrix:
target: [
"rpmbuild.el9",
]
defaults:
run:
shell: bash
name: Target ${{ matrix.target }}
steps:
- name: Acquire sources
uses: actions/checkout@v4
- name: Build package
run: |
docker compose run --user root --rm ${{ matrix.target }} build-rpm.sh
- name: Verify package has been produced
run: |
ls -alF dist/rpm/noarch/*.noarch.rpm