-
Notifications
You must be signed in to change notification settings - Fork 363
/
Copy path.packit.yml.j2
177 lines (158 loc) · 3.82 KB
/
.packit.yml.j2
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
specfile_path: anaconda.spec
upstream_package_name: anaconda
upstream_tag_template: anaconda-{version}
copy_upstream_release_description: true
downstream_package_name: anaconda
files_to_sync:
- rpmlint.toml
- .packit.yml
srpm_build_deps:
- automake
- autoconf
- autogen
- glib2-devel
- gettext-devel
- python3-polib
- gobject-introspection-devel
- glade-devel
{% if distro_name == "fedora" %}
- libxklavier-devel
{% elif distro_name == "rhel" and distro_release < 10 %}
- libxklavier-devel
{% endif %}
- libarchive-devel
- rpm-devel
- nss_wrapper
- nodejs-npm
packages:
anaconda-fedora:
specfile_path: anaconda.spec
anaconda-centos:
specfile_path: anaconda.spec
pkg_tool: centpkg
actions:
post-upstream-clone:
- ./autogen.sh
- ./configure
create-archive:
- "make release"
- 'bash -c "ls -1 anaconda-*.tar.bz2"'
jobs:
{% if distro_release == "rawhide" %}
- job: propose_downstream
trigger: release
packages: [anaconda-fedora]
dist_git_branches:
- main
- job: koji_build
trigger: commit
packages: [anaconda-fedora]
sidetag_group: anaconda-releases
dist_git_branches:
- main
allowed_committers:
- m4rtink
- kkoukiou
- rvykydal
- jkonecny
allowed_pr_authors:
- m4rtink
- kkoukiou
- rvykydal
- jkonecny
- job: bodhi_update
trigger: koji_build
packages: [anaconda-fedora]
sidetag_group: anaconda-releases
dependencies:
- anaconda-webui
dist_git_branches:
- main
allowed_builders:
- m4rtink
- kkoukiou
- rvykydal
- jkonecny
- job: tests
trigger: pull_request
packages: [anaconda-fedora]
targets:
- fedora-rawhide
- job: copr_build
trigger: pull_request
packages: [anaconda-fedora]
targets:
- fedora-rawhide
- fedora-eln
- job: copr_build
trigger: commit
packages: [anaconda-fedora]
targets:
- fedora-rawhide
- fedora-eln
branch: main
owner: "@rhinstaller"
project: Anaconda
preserve_project: True
{% elif distro_name == "fedora" %}
- job: propose_downstream
trigger: release
packages: [anaconda-fedora]
dist_git_branches:
- f{$ distro_release $}
- job: koji_build
trigger: commit
packages: [anaconda-fedora]
sidetag_group: anaconda-releases
dist_git_branches:
- f{$ distro_release $}
allowed_committers:
- m4rtink
- kkoukiou
- rvykydal
- jkonecny
allowed_pr_authors:
- m4rtink
- kkoukiou
- rvykydal
- jkonecny
- job: bodhi_update
trigger: koji_build
packages: [anaconda-fedora]
sidetag_group: anaconda-releases
dependencies:
- anaconda-webui
dist_git_branches:
- f{$ distro_release $}
allowed_builders:
- m4rtink
- kkoukiou
- rvykydal
- jkonecny
- job: tests
trigger: pull_request
packages: [anaconda-fedora]
targets:
- fedora-{$ distro_release $}
- job: copr_build
trigger: commit
packages: [anaconda-fedora]
targets:
- fedora-{$ distro_release $}
branch: fedora-{$ distro_release $}
owner: "@rhinstaller"
project: Anaconda
preserve_project: True
additional_repos:
- "copr://@storage/blivet-daily"
# This repository contains fixup of Rawhide broken environment.
# Mainly useful when there is a package which is not yet in Rawhide but build is available.
- "https://fedorapeople.org/groups/anaconda/repos/anaconda_fixup_repo/"
{% elif distro_name == "rhel" %}
- job: propose_downstream
trigger: release
# Tarballs are not uploaded to GitLab PR on CentOS (https://github.com/packit/packit-service/issues/2436)
manual_trigger: True
packages: [anaconda-centos]
dist_git_branches: c{$ distro_release $}s
{% endif %}