forked from puiterwijk/flask-oidc
-
Notifications
You must be signed in to change notification settings - Fork 15
/
.packit.yaml
107 lines (91 loc) · 2.76 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
95
96
97
98
99
100
101
102
103
104
105
106
107
# See the documentation for more information:
# https://packit.dev/docs/configuration/
specfile_path: python-flask-oidc.spec
issue_repository: https://github.com/fedora-infra/flask-oidc
# add or remove files that should be synced
files_to_sync:
- python-flask-oidc.spec
- .packit.yaml
# name in upstream package repository or registry (e.g. in PyPI)
upstream_package_name: flask-oidc
# downstream (Fedora) RPM package name
downstream_package_name: python-flask-oidc
# dependencies needed to prepare for and build the source RPM
srpm_build_deps:
- wget
- poetry
- curl
- pytest
actions:
post-upstream-clone:
# fetch specfile from src.fp.o
- "curl -o python-flask-oidc.spec https://src.fedoraproject.org/rpms/python-flask-oidc/raw/main/f/python-flask-oidc.spec"
# Install Poetry
- "sh -c 'curl -sSL https://install.python-poetry.org | python3 -'"
get-current-version:
# fetch the version number of the package from the setup.py file
- "poetry version -s"
create-archive:
- "poetry build -f sdist"
- "sh -c 'echo dist/flask_oidc-$(poetry version -s).tar.gz'"
jobs:
# upon upstream PRs, perform COPR builds
- job: copr_build
trigger: pull_request
metadata:
targets:
- fedora-latest-stable
- fedora-development
# upon upstream PRs, test builds
- job: tests
trigger: pull_request
metadata:
targets:
- fedora-latest-stable
- fedora-development
# upon upstream releases, perform COPR builds
- job: copr_build
trigger: release
metadata:
targets:
- fedora-latest-stable
- fedora-development
# upon upstream releases, test builds
- job: tests
trigger: release
metadata:
targets:
- fedora-latest-stable
- fedora-development
# 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:
# Don't create an update on Rawhide.
- fedora-branched