-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.packit.yaml
94 lines (79 loc) · 2.65 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
82
83
84
85
86
87
88
89
90
91
92
93
94
# See the documentation for more information:
# https://packit.dev/docs/configuration/
specfile_path: python-fasjson-client.spec
issue_repository: https://github.com/fedora-infra/fasjson-client
# add or remove files that should be synced
files_to_sync:
- python-fasjson-client.spec
- .packit.yaml
# name in upstream package repository or registry (e.g. in PyPI)
upstream_package_name: fasjson-client
# downstream (Fedora) RPM package name
downstream_package_name: python-fasjson-client
upstream_tag_template: v{version}
srpm_build_deps:
- wget
actions:
create-archive:
- "poetry build -f sdist"
- "sh -c 'echo dist/fasjson-client-$(poetry version -s).tar.gz'"
get-current-version:
- "poetry version -s"
post-upstream-clone:
- "wget https://src.fedoraproject.org/rpms/python-fasjson-client/raw/main/f/python-fasjson-client.spec -O python-fasjson-client.spec"
# we need poetry v1.1.7 because of a bug in 1.1.8 where python evaluates incorrectly
- "sh -c 'wget https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py && python3 install-poetry.py --version 1.1.7 && rm install-poetry.py'"
jobs:
# upon upstream PRs, perform copr builds
- job: copr_build
trigger: pull_request
metadata:
targets:
- fedora-latest-stable
- fedora-development
- job: tests
trigger: pull_request
metadata:
targets:
- fedora-latest-stable
- fedora-development
# upon upstream release, perform copr builds
- job: copr_build
trigger: release
metadata:
targets:
- fedora-latest-stable
- fedora-development
project: fasjson-client
# 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
metadata:
dist_git_branches:
- fedora-latest-stable
- fedora-development
# create an srpm from upstream and submit a scratch build to koji
- job: production_build
trigger: release
metadata:
targets:
- fedora-latest-stable
- fedora-development
# downstream automation
# trigger a build in koji for a new dist-git commit
- job: koji_build
trigger: commit
metadata:
dist_git_branches:
- fedora-latest-stable
- fedora-development
# create a new update in bodhi for a successful koji build. directly related to `koji_build`
- job: bodhi_update
trigger: commit
metadata:
dist_git_branches:
- fedora-latest-stable
- fedora-development