-
Notifications
You must be signed in to change notification settings - Fork 12
/
.packit.yaml
94 lines (79 loc) · 2.56 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:
- curl
actions:
post-upstream-clone:
- "curl https://src.fedoraproject.org/rpms/python-fasjson-client/raw/main/f/python-fasjson-client.spec -o python-fasjson-client.spec"
- "sh -c 'curl -sSL https://install.python-poetry.org | python3 -'"
- "sh -c '~/.local/bin/poetry --version'"
create-archive:
- "sh -c '~/.local/bin/poetry build -f sdist'"
- "sh -c 'echo dist/fasjson_client-$(~/.local/bin/poetry version -s).tar.gz'"
get-current-version:
- "sh -c '~/.local/bin/poetry version -s'"
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