-
Notifications
You must be signed in to change notification settings - Fork 53
/
.packit.yaml
81 lines (65 loc) · 2.28 KB
/
.packit.yaml
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
69
70
71
72
73
74
75
76
77
78
79
80
81
# See the documentation for more information:
# https://packit.dev/docs/configuration/
specfile_path: fedora-messaging.spec
issue_repository: https://github.com/fedora-infra/fedora-messaging
# add or remove files that should be synced
files_to_sync:
- fedora-messaging.spec
- .packit.yaml
# name in upstream package repository or registry (e.g. in PyPI)
upstream_package_name: fedora-messaging
# downstream (Fedora) RPM package name
downstream_package_name: fedora-messaging
upstream_tag_template: v{version}
# dependencies needed to prepare for and build the source RPM
srpm_build_deps:
- curl
targets:
- fedora-latest-stable
- fedora-development
- epel-9
actions:
post-upstream-clone:
# fetch specfile from src.fp.o
- "curl https://src.fedoraproject.org/rpms/fedora-messaging/raw/main/f/fedora-messaging.spec -o fedora-messaging.spec"
- "sh -c 'curl -sSL https://install.python-poetry.org | python3 -'"
- "sh -c '$HOME/.local/bin/poetry --version'"
create-archive:
- "sh -c '$HOME/.local/bin/poetry build -f sdist'"
- "sh -c 'echo dist/fedora_messaging-$($HOME/.local/bin/poetry version -s).tar.gz'"
get-current-version:
# fetch the version number of the package
- "sh -c '$HOME/.local/bin/poetry version -s'"
jobs:
# upon upstream PRs, perform COPR builds
- job: copr_build
trigger: pull_request
# upon upstream PRs, test builds
- job: tests
trigger: pull_request
# upon upstream releases, perform COPR builds
- job: copr_build
trigger: release
# upon upstream releases, test builds
- job: tests
trigger: release
# upon downstream changes, create a PR upstream with sync'd files from above
- job: sync_from_downstream
trigger: commit
# land upstream release in fedora dist-git - no builds
- job: propose_downstream
trigger: release
# create an srpm from upstream and submit a scratch build to koji
- job: production_build
trigger: release
# downstream automation
# trigger a build in koji for a new dist-git commit
- job: koji_build
trigger: commit
# create a new update in bodhi for a successful koji build. directly related to `koji_build`
- job: bodhi_update
trigger: commit
dist_git_branches:
# Don't create an update on Rawhide.
- fedora-latest-stable
- epel-9