Merge ~adrien/autopkgtest-cloud/+git/autopkgtest-package-configs:main into autopkgtest-cloud:master
- Git
- lp:~adrien/autopkgtest-cloud/+git/autopkgtest-package-configs
- main
- Merge into master
Status: | Superseded |
---|---|
Proposed branch: | ~adrien/autopkgtest-cloud/+git/autopkgtest-package-configs:main |
Merge into: | autopkgtest-cloud:master |
Diff against target: |
1254 lines (+1218/-0) (has conflicts) 5 files modified
README.md (+47/-0) big_packages (+846/-0) esm_specials (+8/-0) long_tests (+77/-0) never_run (+240/-0) Conflict in README.md |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Canonical's Ubuntu QA | Pending | ||
Review via email: mp+476785@code.launchpad.net |
This proposal has been superseded by a proposal from 2024-11-19.
Commit message
Description of the change
Tim Andersson (andersson123) wrote : | # |
Unmerged commits
- 2862629... by Adrien Nader
-
big_packages: include golang-
github- protonmail- go-crypto on all arches The package was already in big_packages on arm64 and s390x. However it's
currently failing on amd64 and I've seen the test process use more than
4GB of memory, likely in a test related to argon2 which is a memory
intensive passsword hash (this is on purpose: it makes it much more
difficult to parallelize).The memory usage of argon2 is tweakable and it will likely only increase
over time so make it big_packages for every arch already. - ad37e29... by Skia
-
big_packages: add curtin, for upstream integration
In particular, the `vmtests` test suite needs to run tests in parallel.
- ce309bd... by Skia
-
long_tests: add curtin, for upstream integration
In particular, the `vmtests` test suite got killed multiple times on
timeouts. - 4c8f3e6... by Graham Inggs
-
big_packages: add new dotnet9
- 26a6838... by Graham Inggs
-
big_packages: pybind11 now also gets Killed on arm64
- fedda92... by Graham Inggs
-
big_packages: vedo now gets Killed on s390x
- 79ce0ca... by Shengjing Zhu
-
big_packages: add golang-
github- hillu-go- yara/ppc64el golang-
github- hillu-go- yara/ppc64el is oom killed - b89f7df... by Brian Murray
-
big_pkgs: add rust-gdk4-x11 as it fails in bos01/bos02
- 231475a... by Brian Murray
-
Merge remote-tracking branch 'uralt/rust-gtk4'
- dcf3144... by Ural Tunaboyu
-
big_packages: add rust-gtk4 to for more arches
Previously we only had rust-gtk4 on the list for ppc64 and s390x
temporarily, but similar failures now appear for amd64 and arm64.
So it's probably wise to add all arches to the list on a
permanent basis.
Preview Diff
1 | diff --git a/README.md b/README.md | |||
2 | index 75a195d..a516447 100644 | |||
3 | --- a/README.md | |||
4 | +++ b/README.md | |||
5 | @@ -1,3 +1,4 @@ | |||
6 | 1 | <<<<<<< README.md | ||
7 | 1 | autopkgtest-cloud | 2 | autopkgtest-cloud |
8 | 2 | ================= | 3 | ================= |
9 | 3 | 4 | ||
10 | @@ -9,3 +10,49 @@ delivering their results. | |||
11 | 9 | 10 | ||
12 | 10 | See docs/ or [our readthedocs page](https://autopkgtest-cloud.readthedocs.io) | 11 | See docs/ or [our readthedocs page](https://autopkgtest-cloud.readthedocs.io) |
13 | 11 | for the complete documentation for developers and admins of autopkgtest-cloud. | 12 | for the complete documentation for developers and admins of autopkgtest-cloud. |
14 | 13 | ======= | ||
15 | 14 | # autopkgtest-cloud per-package overrides | ||
16 | 15 | |||
17 | 16 | ## Intro | ||
18 | 17 | |||
19 | 18 | This repository contains three files which control how tests for specific | ||
20 | 19 | packages are run. It is consumed by autopkgtest-cloud automatically. After | ||
21 | 20 | adding a package to big_packages or long_tests and submitting a request to | ||
22 | 21 | rerun the test for one release you should also consider rerunning tests | ||
23 | 22 | (with a migration-reference/0 trigger) for other releases. | ||
24 | 23 | |||
25 | 24 | ## Syntax | ||
26 | 25 | |||
27 | 26 | The syntax of all files is the same: `sourcepackage/arch/release`. | ||
28 | 27 | `sourcepackage` is mandatory. The other two can be omitted or be the special | ||
29 | 28 | string `all`, which means apply to all architectures/releases. | ||
30 | 29 | |||
31 | 30 | Lines beginning with a `#` are treated as comments and ignored. | ||
32 | 31 | |||
33 | 32 | ## big_packages | ||
34 | 33 | |||
35 | 34 | Entries here run on the `package_size_big` Openstack flavour (which has more | ||
36 | 35 | memory and a larger disk) as opposed to the `package_size_default` one. That | ||
37 | 36 | means this is only meaningful for packages which run on Openstack (not `lxd`). | ||
38 | 37 | Entries here also use a longer `--timeout-test`. | ||
39 | 38 | |||
40 | 39 | ## long_tests | ||
41 | 40 | |||
42 | 41 | Entries here use a longer `--timeout-test`, `--timeout-copy` and | ||
43 | 42 | `--timeout-build`. This is currently defined in the code of | ||
44 | 43 | `autopkgtest-cloud`. | ||
45 | 44 | |||
46 | 45 | ## never_run | ||
47 | 46 | |||
48 | 47 | Entries here are never run. A worker which encounters one of these will | ||
49 | 48 | acknowledge the job and upload a log file which says that the job was | ||
50 | 49 | skipped. | ||
51 | 50 | |||
52 | 51 | ## esm_specials | ||
53 | 52 | |||
54 | 53 | Entries here will run even though the arch may not be supported for that | ||
55 | 54 | release any more i.e. for trusty and xenial we should only be running amd64 and | ||
56 | 55 | i386 tests as only those arches are supported via ESM. However, there are some | ||
57 | 56 | packages which still follow the regular SRU process despite the release having | ||
58 | 57 | reached end of standard support. | ||
59 | 58 | >>>>>>> README.md | ||
60 | diff --git a/big_packages b/big_packages | |||
61 | 12 | new file mode 100644 | 59 | new file mode 100644 |
62 | index 0000000..5723ef3 | |||
63 | --- /dev/null | |||
64 | +++ b/big_packages | |||
65 | @@ -0,0 +1,846 @@ | |||
66 | 1 | abyss/arm64 | ||
67 | 2 | abyss/ppc64el | ||
68 | 3 | aevol/amd64 | ||
69 | 4 | aevol/arm64 | ||
70 | 5 | aevol/ppc64el | ||
71 | 6 | akonadi/arm64 | ||
72 | 7 | akonadi/armhf | ||
73 | 8 | akonadi/i386 | ||
74 | 9 | akonadi/ppc64el | ||
75 | 10 | akonadi/s390x | ||
76 | 11 | androguard/arm64 | ||
77 | 12 | androguard/armhf | ||
78 | 13 | androguard/i386 | ||
79 | 14 | androguard/ppc64el | ||
80 | 15 | androguard/s390x | ||
81 | 16 | apt/ppc64el | ||
82 | 17 | armci-mpi/arm64 | ||
83 | 18 | armci-mpi/ppc64el | ||
84 | 19 | assimp/i386 | ||
85 | 20 | asmjit/arm64 | ||
86 | 21 | asymptote/arm64 | ||
87 | 22 | asymptote/ppc64el | ||
88 | 23 | asymptote/s390x | ||
89 | 24 | bbmap/arm64 | ||
90 | 25 | bbmap/ppc64el | ||
91 | 26 | bbmap/s390x | ||
92 | 27 | benchmark/arm64 | ||
93 | 28 | benchmark/armhf | ||
94 | 29 | benchmark/ppc64el | ||
95 | 30 | benchmark/s390x | ||
96 | 31 | binutils/arm64 | ||
97 | 32 | binutils/armhf | ||
98 | 33 | binutils/i386 | ||
99 | 34 | binutils/ppc64el | ||
100 | 35 | binutils/s390x | ||
101 | 36 | botch/arm64 | ||
102 | 37 | botch/armhf | ||
103 | 38 | botch/i386 | ||
104 | 39 | botch/ppc64el | ||
105 | 40 | botch/s390x | ||
106 | 41 | camitk/arm64 | ||
107 | 42 | camitk/armhf | ||
108 | 43 | camitk/i386 | ||
109 | 44 | camitk/ppc64el | ||
110 | 45 | camitk/s390x | ||
111 | 46 | cargo/amd64 | ||
112 | 47 | cargo/arm64 | ||
113 | 48 | cargo/armhf | ||
114 | 49 | cargo/i386 | ||
115 | 50 | cargo/ppc64el | ||
116 | 51 | cargo/s390x | ||
117 | 52 | celery/arm64 | ||
118 | 53 | celery/armhf | ||
119 | 54 | celery/ppc64el | ||
120 | 55 | celery/s390x | ||
121 | 56 | chromium-browser/arm64 | ||
122 | 57 | chromium-browser/armhf | ||
123 | 58 | chromium-browser/i386 | ||
124 | 59 | chromium-browser/ppc64el | ||
125 | 60 | chromium-browser/s390x | ||
126 | 61 | cimg/ppc64el | ||
127 | 62 | cl-ironclad/arm64 | ||
128 | 63 | cl-ironclad/i386 | ||
129 | 64 | cloudkitty/ppc64el | ||
130 | 65 | cod-tools/ppc64el | ||
131 | 66 | cppcheck/ppc64el | ||
132 | 67 | cppimport/arm64 | ||
133 | 68 | cppimport/ppc64el | ||
134 | 69 | cppimport/s390x | ||
135 | 70 | cross-toolchain-base-mipsen/i386 | ||
136 | 71 | cross-toolchain-base/arm64 | ||
137 | 72 | cross-toolchain-base/ppc64el | ||
138 | 73 | curtin/amd64 | ||
139 | 74 | cwltool/arm64 | ||
140 | 75 | cwltool/ppc64el | ||
141 | 76 | cython/arm64 | ||
142 | 77 | cython/ppc64el | ||
143 | 78 | cython/s390x | ||
144 | 79 | cython-legacy/arm64 | ||
145 | 80 | cython-legacy/ppc64el | ||
146 | 81 | cython-legacy/s390x | ||
147 | 82 | dask/arm64 | ||
148 | 83 | dask/armhf | ||
149 | 84 | dask/i386 | ||
150 | 85 | dask/ppc64el | ||
151 | 86 | dask/s390x | ||
152 | 87 | dask.distributed/arm64 | ||
153 | 88 | dask.distributed/ppc64el | ||
154 | 89 | dask.distributed/s390x | ||
155 | 90 | deal.ii/arm64 | ||
156 | 91 | deal.ii/i386 | ||
157 | 92 | deal.ii/ppc64el | ||
158 | 93 | deal.ii/s390x | ||
159 | 94 | ddnet/arm64 | ||
160 | 95 | ddnet/ppc64el | ||
161 | 96 | ddnet/s390x | ||
162 | 97 | delve/arm64 | ||
163 | 98 | dials/arm64 | ||
164 | 99 | dials/ppc64el | ||
165 | 100 | diffoscope/ppc64el | ||
166 | 101 | dipy/ppc64el | ||
167 | 102 | dolfin/arm64 | ||
168 | 103 | dolfin/i386 | ||
169 | 104 | dolfin/ppc64el | ||
170 | 105 | dolfin/s390x | ||
171 | 106 | dolfinx/arm64 | ||
172 | 107 | dolfinx/i386 | ||
173 | 108 | dolfinx/ppc64el | ||
174 | 109 | dolfinx/s390x | ||
175 | 110 | dotnet6 | ||
176 | 111 | dotnet7 | ||
177 | 112 | dotnet8 | ||
178 | 113 | dotnet9 | ||
179 | 114 | dpdk/arm64 | ||
180 | 115 | dpdk/ppc64el | ||
181 | 116 | dpdk/s390x | ||
182 | 117 | dracut/amd64 | ||
183 | 118 | dracut/arm64 | ||
184 | 119 | dracut/ppc64el | ||
185 | 120 | dracut/s390x | ||
186 | 121 | dvisvgm/amd64 | ||
187 | 122 | dvisvgm/arm64 | ||
188 | 123 | dvisvgm/ppc64el | ||
189 | 124 | dvisvgm/s390x | ||
190 | 125 | einsteinpy/ppc64el | ||
191 | 126 | fastp/ppc64el | ||
192 | 127 | fenics-dolfinx/arm64 | ||
193 | 128 | fenics-dolfinx/ppc64el | ||
194 | 129 | fenics-dolfinx/s390x | ||
195 | 130 | finalcif/arm64 | ||
196 | 131 | firefox/arm64 | ||
197 | 132 | firefox/armhf | ||
198 | 133 | firefox/i386 | ||
199 | 134 | firefox/ppc64el | ||
200 | 135 | firefox/s390x | ||
201 | 136 | freecad/arm64 | ||
202 | 137 | freecad/ppc64el | ||
203 | 138 | freecad/s390x | ||
204 | 139 | gammapy/arm64 | ||
205 | 140 | gammapy/ppc64el | ||
206 | 141 | gammapy/s390x | ||
207 | 142 | ganeti/arm64 | ||
208 | 143 | ganeti/armhf | ||
209 | 144 | ganeti/i386 | ||
210 | 145 | ganeti/ppc64el | ||
211 | 146 | ganeti/s390x | ||
212 | 147 | ghdl/arm64 | ||
213 | 148 | ghdl/ppc64el | ||
214 | 149 | gjs/ppc64el | ||
215 | 150 | glibc/amd64 | ||
216 | 151 | glibc/arm64 | ||
217 | 152 | glibc/armhf | ||
218 | 153 | glibc/i386 | ||
219 | 154 | glibc/ppc64el | ||
220 | 155 | glibc/s390x | ||
221 | 156 | gnudatalanguage/arm64 | ||
222 | 157 | golang-github-aws-aws-sdk-go-v2/amd64 | ||
223 | 158 | golang-github-hillu-go-yara/ppc64el | ||
224 | 159 | golang-github-klauspost-compress/ppc64el | ||
225 | 160 | golang-github-klauspost-compress/s390x | ||
226 | 161 | golang-github-protonmail-go-crypto/amd64 | ||
227 | 162 | golang-github-protonmail-go-crypto/arm64 | ||
228 | 163 | golang-github-protonmail-go-crypto/armhf | ||
229 | 164 | golang-github-protonmail-go-crypto/ppc64el | ||
230 | 165 | golang-github-protonmail-go-crypto/s390x | ||
231 | 166 | golang-github-valyala-gozstd/ppc64el | ||
232 | 167 | golang-github-valyala-gozstd/s390x | ||
233 | 168 | gscan2pdf/arm64 | ||
234 | 169 | heat-dashboard/armhf | ||
235 | 170 | heudiconv/arm64 | ||
236 | 171 | heudiconv/armhf | ||
237 | 172 | heudiconv/i386 | ||
238 | 173 | heudiconv/ppc64el | ||
239 | 174 | heudiconv/s390x | ||
240 | 175 | hilive/arm64 | ||
241 | 176 | hugo/ppc64el | ||
242 | 177 | igraph/arm64 | ||
243 | 178 | igraph/ppc64el | ||
244 | 179 | igraph/s390x | ||
245 | 180 | ipyparallel/arm64 | ||
246 | 181 | ipyparallel/ppc64el | ||
247 | 182 | joblib/arm64 | ||
248 | 183 | joblib/ppc64el | ||
249 | 184 | joblib/s390x | ||
250 | 185 | jsurf-alggeo/arm64 | ||
251 | 186 | juce/arm64 | ||
252 | 187 | juce/ppc64el | ||
253 | 188 | julia/arm64 | ||
254 | 189 | julia/armhf | ||
255 | 190 | julia/i386 | ||
256 | 191 | julia/ppc64el | ||
257 | 192 | julia/s390x | ||
258 | 193 | jupyter-client/arm64 | ||
259 | 194 | khmer/amd64 | ||
260 | 195 | kineticstools/arm64 | ||
261 | 196 | kineticstools/armhf | ||
262 | 197 | kineticstools/i386 | ||
263 | 198 | kineticstools/ppc64el | ||
264 | 199 | kineticstools/s390x | ||
265 | 200 | kmc/ppc64el | ||
266 | 201 | libaio/ppc64el | ||
267 | 202 | libflame/arm64 | ||
268 | 203 | libflame/i386 | ||
269 | 204 | libflame/ppc64el | ||
270 | 205 | libflame/s390x | ||
271 | 206 | libmedia-convert-perl/arm64 | ||
272 | 207 | libmedia-convert-perl/ppc64el | ||
273 | 208 | libmedia-convert-perl/s390x | ||
274 | 209 | libreoffice/arm64 | ||
275 | 210 | libreoffice/armhf | ||
276 | 211 | libreoffice/i386 | ||
277 | 212 | libreoffice/ppc64el | ||
278 | 213 | libreoffice/s390x | ||
279 | 214 | libsis-jhdf5-java/i386 | ||
280 | 215 | libsis-jhdf5-java/ppc64el | ||
281 | 216 | libtext-bidi-perl/arm64 | ||
282 | 217 | libtext-bidi-perl/armhf | ||
283 | 218 | libtext-bidi-perl/i386 | ||
284 | 219 | libtext-bidi-perl/ppc64el | ||
285 | 220 | libtext-bidi-perl/s390x | ||
286 | 221 | link-grammar/arm64 | ||
287 | 222 | link-grammar/ppc64el | ||
288 | 223 | link-grammar/s390x | ||
289 | 224 | lintian/arm64 | ||
290 | 225 | linux-*/amd64 | ||
291 | 226 | linux-*/arm64 | ||
292 | 227 | linux-*/armhf | ||
293 | 228 | linux-*/i386 | ||
294 | 229 | linux-*/ppc64el | ||
295 | 230 | linux-*/s390x | ||
296 | 231 | linux/amd64 | ||
297 | 232 | linux/arm64 | ||
298 | 233 | linux/armhf | ||
299 | 234 | linux/i386 | ||
300 | 235 | linux/ppc64el | ||
301 | 236 | linux/s390x | ||
302 | 237 | livecd-rootfs/amd64 | ||
303 | 238 | lmfit-py/arm64 | ||
304 | 239 | lmfit-py/ppc64el | ||
305 | 240 | lmfit-py/s390x | ||
306 | 241 | loguru/ppc64el | ||
307 | 242 | lttng-modules/arm64 | ||
308 | 243 | lttng-modules/armhf | ||
309 | 244 | lttng-modules/i386 | ||
310 | 245 | lttng-modules/ppc64el | ||
311 | 246 | lttng-modules/s390x | ||
312 | 247 | makedumpfile/ppc64el | ||
313 | 248 | mariadb-10.3/i386 | ||
314 | 249 | mariadb-10.5/i386 | ||
315 | 250 | mariadb-10.6/amd64 | ||
316 | 251 | mathicgb/arm64 | ||
317 | 252 | mathicgb/armhf | ||
318 | 253 | mathicgb/i386 | ||
319 | 254 | mathicgb/ppc64el | ||
320 | 255 | mathicgb/s390x | ||
321 | 256 | mdanalysis/arm64 | ||
322 | 257 | mdanalysis/ppc64el | ||
323 | 258 | mdanalysis/s390x | ||
324 | 259 | mercurial/arm64 | ||
325 | 260 | mercurial/ppc64el | ||
326 | 261 | mercurial/s390x | ||
327 | 262 | meson/amd64 | ||
328 | 263 | meson/arm64 | ||
329 | 264 | meson/i386 | ||
330 | 265 | meson/ppc64el | ||
331 | 266 | meson/s390x | ||
332 | 267 | mkl-dnn/i386 | ||
333 | 268 | multipath-tools/arm64 | ||
334 | 269 | multipath-tools/i386 | ||
335 | 270 | multipath-tools/ppc64el | ||
336 | 271 | multipath-tools/s390x | ||
337 | 272 | mysql-8.0/amd64 | ||
338 | 273 | mysql-8.0/arm64 | ||
339 | 274 | mysql-8.0/ppc64el | ||
340 | 275 | mysql-connector-c++/s390x | ||
341 | 276 | netgen/ppc64el | ||
342 | 277 | node-foreground-child/amd64 | ||
343 | 278 | node-foreground-child/arm64 | ||
344 | 279 | node-foreground-child/ppc64el | ||
345 | 280 | node-foreground-child/s390x | ||
346 | 281 | node-get-stream/ppc64el | ||
347 | 282 | node-get-stream/s390x | ||
348 | 283 | node-immutable-tuple/arm64 | ||
349 | 284 | node-package-json/amd64 | ||
350 | 285 | node-package-json/arm64 | ||
351 | 286 | node-package-json/ppc64el | ||
352 | 287 | node-package-json/s390x | ||
353 | 288 | node-redis/arm64 | ||
354 | 289 | nodejs/i386 | ||
355 | 290 | nova/arm64 | ||
356 | 291 | nova/armhf | ||
357 | 292 | nova/i386 | ||
358 | 293 | nova/ppc64el | ||
359 | 294 | nova/s390x | ||
360 | 295 | numcodecs/s390x | ||
361 | 296 | numpy/amd64 | ||
362 | 297 | numpy/arm64 | ||
363 | 298 | numpy/ppc64el | ||
364 | 299 | numpy/s390x | ||
365 | 300 | nvidia-cuda-samples/amd64 | ||
366 | 301 | nvidia-cuda-samples/arm64 | ||
367 | 302 | nvidia-cuda-samples/ppc64el | ||
368 | 303 | nvidia-cuda-toolkit/amd64 | ||
369 | 304 | nwchem/arm64 | ||
370 | 305 | nwchem/ppc64el | ||
371 | 306 | nwchem/s390x | ||
372 | 307 | ocrmypdf/arm64 | ||
373 | 308 | ocrmypdf/ppc64el | ||
374 | 309 | ocrmypdf/s390x | ||
375 | 310 | octave-image/arm64 | ||
376 | 311 | octave-image/ppc64el | ||
377 | 312 | octave-image/s390x | ||
378 | 313 | octave-parallel/arm64 | ||
379 | 314 | octave-parallel/i386 | ||
380 | 315 | octave-parallel/ppc64el | ||
381 | 316 | octave-parallel/s390x | ||
382 | 317 | onetbb/arm64 | ||
383 | 318 | onetbb/ppc64el | ||
384 | 319 | onetbb/s390x | ||
385 | 320 | openjdk-13/i386 | ||
386 | 321 | openjdk-13/ppc64el | ||
387 | 322 | openjdk-13/s390x | ||
388 | 323 | openjdk-14/i386 | ||
389 | 324 | openjdk-14/ppc64el | ||
390 | 325 | openjdk-14/s390x | ||
391 | 326 | openjdk-22/amd64 | ||
392 | 327 | openjdk-22/arm64 | ||
393 | 328 | openjdk-22/ppc64el | ||
394 | 329 | openjdk-22/s390x | ||
395 | 330 | openjdk-8/arm64 | ||
396 | 331 | openjdk-8/armhf | ||
397 | 332 | openjdk-8/i386 | ||
398 | 333 | openjdk-8/ppc64el | ||
399 | 334 | openjdk-8/s390x | ||
400 | 335 | openjdk-lts/arm64 | ||
401 | 336 | openjdk-lts/armhf | ||
402 | 337 | openjdk-lts/i386 | ||
403 | 338 | openjdk-lts/ppc64el | ||
404 | 339 | openjdk-lts/s390x | ||
405 | 340 | openmm/ppc64el | ||
406 | 341 | openmolcas/arm64 | ||
407 | 342 | openmolcas/ppc64el | ||
408 | 343 | openmolcas/s390x | ||
409 | 344 | openmsx/arm64 | ||
410 | 345 | openmsx/ppc64el | ||
411 | 346 | openmsx/s390x | ||
412 | 347 | opensaml/arm64 | ||
413 | 348 | openvswitch/amd64 | ||
414 | 349 | openvswitch/arm64 | ||
415 | 350 | openvswitch/ppc64el | ||
416 | 351 | openvswitch/s390x | ||
417 | 352 | ovn/amd64 | ||
418 | 353 | ovn/arm64 | ||
419 | 354 | ovn/ppc64el | ||
420 | 355 | ovn/s390x | ||
421 | 356 | pandas/arm64 | ||
422 | 357 | pandas/ppc64el | ||
423 | 358 | petsc4py/arm64 | ||
424 | 359 | petsc4py/ppc64el | ||
425 | 360 | puma/armhf | ||
426 | 361 | puma/i386 | ||
427 | 362 | puma/ppc64el | ||
428 | 363 | pybind11/arm64 | ||
429 | 364 | pybind11/ppc64el | ||
430 | 365 | pybind11/s390x | ||
431 | 366 | pyfai/arm64 | ||
432 | 367 | pyfai/i386 | ||
433 | 368 | pyfai/ppc64el | ||
434 | 369 | pyfai/s390x | ||
435 | 370 | pygrib/arm64 | ||
436 | 371 | pygrib/ppc64el | ||
437 | 372 | pymatgen/arm64 | ||
438 | 373 | pymatgen/ppc64el | ||
439 | 374 | pyresample/arm64 | ||
440 | 375 | pyresample/i386 | ||
441 | 376 | pyresample/ppc64el | ||
442 | 377 | pyresample/s390x | ||
443 | 378 | pyside2/arm64 | ||
444 | 379 | pytango/arm64 | ||
445 | 380 | pytango/ppc64el | ||
446 | 381 | pytango/s390x | ||
447 | 382 | pytest-qt/arm64 | ||
448 | 383 | pytest-qt/ppc64el | ||
449 | 384 | python-aiortc/arm64 | ||
450 | 385 | python-aiortc/ppc64el | ||
451 | 386 | python-bumps/arm64 | ||
452 | 387 | python-bumps/ppc64el | ||
453 | 388 | python-bumps/s390x | ||
454 | 389 | python-cffi/arm64 | ||
455 | 390 | python-cffi/armhf | ||
456 | 391 | python-cffi/i386 | ||
457 | 392 | python-cffi/ppc64el | ||
458 | 393 | python-cffi/s390x | ||
459 | 394 | python-cogent/arm64 | ||
460 | 395 | python-cogent/ppc64el | ||
461 | 396 | python-cogent/s390x | ||
462 | 397 | python-cryptography/arm64 | ||
463 | 398 | python-cryptography/i386 | ||
464 | 399 | python-cryptography/ppc64el | ||
465 | 400 | python-cryptography/s390x | ||
466 | 401 | python-django-celery-results/arm64 | ||
467 | 402 | python-django-celery-results/ppc64el | ||
468 | 403 | python-django-celery-results/s390x | ||
469 | 404 | python-dmsh/arm64 | ||
470 | 405 | python-dmsh/i386 | ||
471 | 406 | python-dmsh/ppc64el | ||
472 | 407 | python-dmsh/s390x | ||
473 | 408 | python-hypothesis/arm64 | ||
474 | 409 | python-hypothesis/armhf | ||
475 | 410 | python-hypothesis/i386 | ||
476 | 411 | python-hypothesis/ppc64el | ||
477 | 412 | python-hypothesis/s390x | ||
478 | 413 | python-molotov/arm64 | ||
479 | 414 | python-molotov/ppc64el | ||
480 | 415 | python-pymbar/arm64 | ||
481 | 416 | python-pymbar/ppc64el | ||
482 | 417 | python-pymbar/s390x | ||
483 | 418 | python-refurb/ppc64el | ||
484 | 419 | python-ruffus/arm64 | ||
485 | 420 | python-ruffus/armhf | ||
486 | 421 | python-ruffus/i386 | ||
487 | 422 | python-ruffus/ppc64el | ||
488 | 423 | python-ruffus/s390x | ||
489 | 424 | python-scipy/i386 | ||
490 | 425 | python2.7/i386 | ||
491 | 426 | python3.6/i386 | ||
492 | 427 | python3.7/i386 | ||
493 | 428 | python3.8/i386 | ||
494 | 429 | python3.9/ppc64el | ||
495 | 430 | python3.10/ppc64el | ||
496 | 431 | python3.12/ppc64el | ||
497 | 432 | pythran/arm64 | ||
498 | 433 | pythran/ppc64el | ||
499 | 434 | pythran/s390x | ||
500 | 435 | pytorch/amd64 | ||
501 | 436 | q2-feature-classifier/arm64 | ||
502 | 437 | q2-feature-classifier/i386 | ||
503 | 438 | q2-feature-classifier/ppc64el | ||
504 | 439 | q2-feature-classifier/s390x | ||
505 | 440 | r-bioc-beachmat/arm64 | ||
506 | 441 | r-bioc-beachmat/i386 | ||
507 | 442 | r-bioc-beachmat/ppc64el | ||
508 | 443 | r-bioc-beachmat/s390x | ||
509 | 444 | r-bioc-biocsingular/arm64 | ||
510 | 445 | r-bioc-biocsingular/ppc64el | ||
511 | 446 | r-bioc-biocsingular/s390x | ||
512 | 447 | r-bioc-cummerbund/ppc64el | ||
513 | 448 | r-bioc-metagenomeseq/arm64 | ||
514 | 449 | r-bioc-metagenomeseq/i386 | ||
515 | 450 | r-bioc-metagenomeseq/ppc64el | ||
516 | 451 | r-bioc-metagenomeseq/s390x | ||
517 | 452 | r-bioc-netsam/arm64 | ||
518 | 453 | r-bioc-netsam/ppc64el | ||
519 | 454 | r-bioc-netsam/s390x | ||
520 | 455 | r-bioc-rgsepd/ppc64el | ||
521 | 456 | r-bioc-scuttle/arm64 | ||
522 | 457 | r-bioc-scuttle/i386 | ||
523 | 458 | r-bioc-scuttle/ppc64el | ||
524 | 459 | r-bioc-scuttle/s390x | ||
525 | 460 | r-bioc-sva/arm64 | ||
526 | 461 | r-bioc-sva/i386 | ||
527 | 462 | r-bioc-sva/ppc64el | ||
528 | 463 | r-bioc-sva/s390x | ||
529 | 464 | r-bioc-variantannotation/arm64 | ||
530 | 465 | r-bioc-variantannotation/i386 | ||
531 | 466 | r-bioc-variantannotation/ppc64el | ||
532 | 467 | r-bioc-variantannotation/s390x | ||
533 | 468 | r-cran-bayesm/ppc64el | ||
534 | 469 | r-cran-datawizard/ppc64el | ||
535 | 470 | r-cran-datawizard/s390x | ||
536 | 471 | r-cran-epi/arm64 | ||
537 | 472 | r-cran-epi/armhf | ||
538 | 473 | r-cran-epi/i386 | ||
539 | 474 | r-cran-epi/ppc64el | ||
540 | 475 | r-cran-epi/s390x | ||
541 | 476 | r-cran-future/amd64 | ||
542 | 477 | r-cran-future/arm64 | ||
543 | 478 | r-cran-future/armhf | ||
544 | 479 | r-cran-future/i386 | ||
545 | 480 | r-cran-future/ppc64el | ||
546 | 481 | r-cran-future/s390x | ||
547 | 482 | r-cran-igraph/arm64 | ||
548 | 483 | r-cran-igraph/armhf | ||
549 | 484 | r-cran-igraph/i386 | ||
550 | 485 | r-cran-igraph/ppc64el | ||
551 | 486 | r-cran-igraph/s390x | ||
552 | 487 | r-cran-insight/arm64 | ||
553 | 488 | r-cran-insight/ppc64el | ||
554 | 489 | r-cran-insight/s390x | ||
555 | 490 | r-cran-mertools/ppc64el | ||
556 | 491 | r-cran-parameters/arm64 | ||
557 | 492 | r-cran-parameters/ppc64el | ||
558 | 493 | r-cran-parameters/s390x | ||
559 | 494 | r-cran-prophet/arm64 | ||
560 | 495 | r-cran-prophet/ppc64el | ||
561 | 496 | r-cran-prophet/s390x | ||
562 | 497 | r-cran-rpact/arm64 | ||
563 | 498 | r-cran-rpact/ppc64el | ||
564 | 499 | r-cran-rpact/s390x | ||
565 | 500 | r-cran-rstanarm/arm64 | ||
566 | 501 | r-cran-rstanarm/ppc64el | ||
567 | 502 | r-cran-rstanarm/s390x | ||
568 | 503 | reproject/arm64 | ||
569 | 504 | reproject/ppc64el | ||
570 | 505 | reproject/s390x | ||
571 | 506 | rocs/arm64 | ||
572 | 507 | rocs/armhf | ||
573 | 508 | rocs/i386 | ||
574 | 509 | rocs/ppc64el | ||
575 | 510 | rocs/s390x | ||
576 | 511 | rsass/arm64 | ||
577 | 512 | rsass/ppc64el | ||
578 | 513 | rsass/s390x | ||
579 | 514 | ruby-minitest/arm64 | ||
580 | 515 | ruby-minitest/i386 | ||
581 | 516 | ruby-minitest/ppc64el | ||
582 | 517 | ruby-minitest/s390x | ||
583 | 518 | ruby-parallel/arm64 | ||
584 | 519 | ruby-parallel/i386 | ||
585 | 520 | ruby-parallel/ppc64el | ||
586 | 521 | ruby-parallel/s390x | ||
587 | 522 | rust-ahash/amd64 | ||
588 | 523 | rust-ahash/arm64 | ||
589 | 524 | rust-ahash/ppc64el | ||
590 | 525 | rust-ahash/s390x | ||
591 | 526 | rust-cargo-c/ppc64el | ||
592 | 527 | rust-gdk-pixbuf/arm64 | ||
593 | 528 | rust-gdk-pixbuf/armhf | ||
594 | 529 | rust-gdk-pixbuf/ppc64el | ||
595 | 530 | rust-gdk-pixbuf/s390x | ||
596 | 531 | rust-gtk3-macros/arm64 | ||
597 | 532 | rust-gtk3-macros/ppc64el | ||
598 | 533 | rust-gtk3-macros/s390x | ||
599 | 534 | rust-gtk4/amd64 | ||
600 | 535 | rust-gtk4/arm64 | ||
601 | 536 | rust-gtk4/ppc64el | ||
602 | 537 | rust-gtk4/s390x | ||
603 | 538 | rust-loom/arm64 | ||
604 | 539 | rust-png/amd64 | ||
605 | 540 | rust-png/arm64 | ||
606 | 541 | rust-png/ppc64el | ||
607 | 542 | rust-png/s390x | ||
608 | 543 | rust-rayon/arm64 | ||
609 | 544 | rust-rayon/ppc64el | ||
610 | 545 | rust-rayon/s390x | ||
611 | 546 | rust-sequoia-openpgp/arm64 | ||
612 | 547 | rust-sequoia-openpgp/armhf | ||
613 | 548 | rust-sequoia-openpgp/ppc64el | ||
614 | 549 | rust-sequoia-openpgp/s390x | ||
615 | 550 | rust-sequoia-wot/ppc64el | ||
616 | 551 | rust-uom/arm64 | ||
617 | 552 | rust-uom/ppc64el | ||
618 | 553 | rust-x11rb/ppc64el | ||
619 | 554 | rust-x11rb/s390x | ||
620 | 555 | rustc/amd64 | ||
621 | 556 | rustc/arm64 | ||
622 | 557 | rustc/i386 | ||
623 | 558 | rustc/ppc64el | ||
624 | 559 | rustc/s390x | ||
625 | 560 | sagemath/arm64 | ||
626 | 561 | samba/ppc64el | ||
627 | 562 | samtools/arm64 | ||
628 | 563 | samtools/armhf | ||
629 | 564 | samtools/i386 | ||
630 | 565 | samtools/ppc64el | ||
631 | 566 | samtools/s390x | ||
632 | 567 | satpy/arm64 | ||
633 | 568 | satpy/armhf | ||
634 | 569 | satpy/i386 | ||
635 | 570 | satpy/ppc64el | ||
636 | 571 | satpy/s390x | ||
637 | 572 | sbcl/arm64 | ||
638 | 573 | scapy/ppc64el | ||
639 | 574 | scapy/s390x | ||
640 | 575 | scikit-learn/armhf | ||
641 | 576 | scikit-learn/i386 | ||
642 | 577 | scipy/arm64 | ||
643 | 578 | scipy/i386 | ||
644 | 579 | scipy/ppc64el | ||
645 | 580 | scipy/s390x | ||
646 | 581 | seaborn/s390x | ||
647 | 582 | senlin/s390x | ||
648 | 583 | seqan-raptor/arm64 | ||
649 | 584 | seqan-raptor/ppc64el | ||
650 | 585 | silx/armhf | ||
651 | 586 | silx/i386 | ||
652 | 587 | skimage/arm64 | ||
653 | 588 | skimage/armhf | ||
654 | 589 | skimage/i386 | ||
655 | 590 | skimage/ppc64el | ||
656 | 591 | skimage/s390x | ||
657 | 592 | spaln/amd64 | ||
658 | 593 | spaln/s390x | ||
659 | 594 | specutils/ppc64el | ||
660 | 595 | spyder/arm64 | ||
661 | 596 | statsmodels/arm64 | ||
662 | 597 | statsmodels/armhf | ||
663 | 598 | statsmodels/i386 | ||
664 | 599 | statsmodels/ppc64el | ||
665 | 600 | statsmodels/s390x | ||
666 | 601 | svgpp/arm64 | ||
667 | 602 | svgpp/ppc64el | ||
668 | 603 | svgpp/s390x | ||
669 | 604 | systemd/amd64 | ||
670 | 605 | systemd/ppc64el | ||
671 | 606 | systemd-upstream/ppc64el | ||
672 | 607 | tdb/arm64 | ||
673 | 608 | tdb/armhf | ||
674 | 609 | tdb/i386 | ||
675 | 610 | tdb/ppc64el | ||
676 | 611 | tdb/s390x | ||
677 | 612 | tgt/arm64 | ||
678 | 613 | tgt/i386 | ||
679 | 614 | tgt/ppc64el | ||
680 | 615 | tgt/s390x | ||
681 | 616 | toil/arm64 | ||
682 | 617 | toil/armhf | ||
683 | 618 | toil/i386 | ||
684 | 619 | toil/ppc64el | ||
685 | 620 | toil/s390x | ||
686 | 621 | umap-learn/amd64 | ||
687 | 622 | vedo/s390x | ||
688 | 623 | xtensor/amd64 | ||
689 | 624 | xtensor/ppc64el | ||
690 | 625 | yt/arm64 | ||
691 | 626 | yt/armhf | ||
692 | 627 | yt/i386 | ||
693 | 628 | yt/ppc64el | ||
694 | 629 | yt/s390x | ||
695 | 630 | |||
696 | 631 | # These only need more memory in lgw01 (scalingstack) | ||
697 | 632 | akonadi/amd64 | ||
698 | 633 | androguard/amd64 | ||
699 | 634 | armci-mpi/amd64 | ||
700 | 635 | assimp/amd64 | ||
701 | 636 | asymptote/amd64 | ||
702 | 637 | bbmap/amd64 | ||
703 | 638 | benchmark/amd64 | ||
704 | 639 | binutils/amd64 | ||
705 | 640 | bmtk/amd64 | ||
706 | 641 | botch/amd64 | ||
707 | 642 | camitk/amd64 | ||
708 | 643 | casper/amd64 | ||
709 | 644 | celery/amd64 | ||
710 | 645 | chromium-browser/amd64 | ||
711 | 646 | cl-ironclad/amd64 | ||
712 | 647 | cppimport/amd64 | ||
713 | 648 | cross-toolchain-base-mipsen/amd64 | ||
714 | 649 | cross-toolchain-base/amd64 | ||
715 | 650 | cwltool/amd64 | ||
716 | 651 | dask/amd64 | ||
717 | 652 | dask.distributed/amd64 | ||
718 | 653 | deal.ii/amd64 | ||
719 | 654 | ddnet/amd64 | ||
720 | 655 | delve/amd64 | ||
721 | 656 | dials/amd64 | ||
722 | 657 | dolfin/amd64 | ||
723 | 658 | dolfinx/amd64 | ||
724 | 659 | dpdk/amd64 | ||
725 | 660 | einsteinpy/amd64 | ||
726 | 661 | fenics-dolfinx/amd64 | ||
727 | 662 | finalcif/amd64 | ||
728 | 663 | firefox/amd64 | ||
729 | 664 | freecad/amd64 | ||
730 | 665 | gammapy/amd64 | ||
731 | 666 | ganeti/amd64 | ||
732 | 667 | gnudatalanguage/amd64 | ||
733 | 668 | heudiconv/amd64 | ||
734 | 669 | hilive/amd64 | ||
735 | 670 | igraph/amd64 | ||
736 | 671 | ipyparallel/amd64 | ||
737 | 672 | joblib/amd64 | ||
738 | 673 | jsurf-alggeo/amd64 | ||
739 | 674 | juce/amd64 | ||
740 | 675 | julia/amd64 | ||
741 | 676 | jupyter-client/amd64 | ||
742 | 677 | kineticstools/amd64 | ||
743 | 678 | libflame/amd64 | ||
744 | 679 | libgd2/amd64 | ||
745 | 680 | libreoffice/amd64 | ||
746 | 681 | libsis-jhdf5-java/amd64 | ||
747 | 682 | libtext-bidi-perl/amd64 | ||
748 | 683 | link-grammar/amd64 | ||
749 | 684 | lttng-modules/amd64 | ||
750 | 685 | mariadb-10.3/amd64 | ||
751 | 686 | mariadb-10.5/amd64 | ||
752 | 687 | mariadb/amd64 | ||
753 | 688 | mathicgb/amd64 | ||
754 | 689 | mdanalysis/amd64 | ||
755 | 690 | mercurial/amd64 | ||
756 | 691 | mkl-dnn/amd64 | ||
757 | 692 | multipath-tools/amd64 | ||
758 | 693 | nodejs/amd64 | ||
759 | 694 | nova/amd64 | ||
760 | 695 | ocrmypdf/amd64 | ||
761 | 696 | octave-parallel/amd64 | ||
762 | 697 | openjdk-13/amd64 | ||
763 | 698 | openjdk-14/amd64 | ||
764 | 699 | openjdk-8/amd64 | ||
765 | 700 | openjdk-lts/amd64 | ||
766 | 701 | openmolcas/amd64 | ||
767 | 702 | opensaml/amd64 | ||
768 | 703 | pandas/amd64 | ||
769 | 704 | praat/amd64 | ||
770 | 705 | psychopy/amd64 | ||
771 | 706 | puma/amd64 | ||
772 | 707 | pycuda/amd64 | ||
773 | 708 | pyfai/amd64 | ||
774 | 709 | pymatgen/amd64 | ||
775 | 710 | pyopencl/amd64 | ||
776 | 711 | pyresample/amd64 | ||
777 | 712 | pyside2/amd64 | ||
778 | 713 | pytango/amd64 | ||
779 | 714 | python-bumps/amd64 | ||
780 | 715 | python-cffi/amd64 | ||
781 | 716 | python-cogent/amd64 | ||
782 | 717 | python-cryptography/amd64 | ||
783 | 718 | python-django-celery-results/amd64 | ||
784 | 719 | python-dmsh/amd64 | ||
785 | 720 | python-hypothesis/amd64 | ||
786 | 721 | python-pymbar/amd64 | ||
787 | 722 | python-ruffus/amd64 | ||
788 | 723 | python-scipy/amd64 | ||
789 | 724 | python2.7/amd64 | ||
790 | 725 | python3.6/amd64 | ||
791 | 726 | python3.7/amd64 | ||
792 | 727 | python3.8/amd64 | ||
793 | 728 | pythran/amd64 | ||
794 | 729 | q2-dada2/amd64 | ||
795 | 730 | q2-feature-classifier/amd64 | ||
796 | 731 | qutip/amd64 | ||
797 | 732 | r-bioc-beachmat/amd64 | ||
798 | 733 | r-bioc-biocsingular/amd64 | ||
799 | 734 | r-bioc-cummerbund/amd64 | ||
800 | 735 | r-bioc-metagenomeseq/amd64 | ||
801 | 736 | r-bioc-netsam/amd64 | ||
802 | 737 | r-bioc-scuttle/amd64 | ||
803 | 738 | r-bioc-sva/amd64 | ||
804 | 739 | r-bioc-variantannotation/amd64 | ||
805 | 740 | r-cran-epi/amd64 | ||
806 | 741 | r-cran-igraph/amd64 | ||
807 | 742 | r-cran-prophet/amd64 | ||
808 | 743 | r-cran-rpact/amd64 | ||
809 | 744 | r-cran-rstanarm/amd64 | ||
810 | 745 | rocs/amd64 | ||
811 | 746 | ruby-minitest/amd64 | ||
812 | 747 | ruby-parallel/amd64 | ||
813 | 748 | rust-gdk-pixbuf/amd64 | ||
814 | 749 | rust-tinyvec/ppc64el | ||
815 | 750 | rust-uom/s390x | ||
816 | 751 | sagemath/amd64 | ||
817 | 752 | samtools/amd64 | ||
818 | 753 | sarsen/amd64 | ||
819 | 754 | sarsen/arm64 | ||
820 | 755 | sarsen/ppc64el | ||
821 | 756 | sarsen/s390x | ||
822 | 757 | satpy/amd64 | ||
823 | 758 | sbcl/amd64 | ||
824 | 759 | scikit-learn/amd64 | ||
825 | 760 | scipy/amd64 | ||
826 | 761 | seqan3/amd64 | ||
827 | 762 | silx/amd64 | ||
828 | 763 | skimage/amd64 | ||
829 | 764 | soapdenovo2/amd64 | ||
830 | 765 | spades/amd64 | ||
831 | 766 | spyder/amd64 | ||
832 | 767 | statsmodels/amd64 | ||
833 | 768 | svgpp/amd64 | ||
834 | 769 | tdb/amd64 | ||
835 | 770 | tgt/amd64 | ||
836 | 771 | toil/amd64 | ||
837 | 772 | xsimd/arm64 | ||
838 | 773 | yt/amd64 | ||
839 | 774 | |||
840 | 775 | # found by log searching with stats.py | ||
841 | 776 | # (should be removed when ppc64el and s390x are fully in PS6) | ||
842 | 777 | apport/s390x | ||
843 | 778 | bpfcc/arm64 | ||
844 | 779 | bpfcc/ppc64el | ||
845 | 780 | bpfcc/s390x | ||
846 | 781 | bpftrace/ppc64el | ||
847 | 782 | cl-ironclad/ppc64el | ||
848 | 783 | cl-postmodern/ppc64el | ||
849 | 784 | contourpy/s390x | ||
850 | 785 | juce/s390x | ||
851 | 786 | libcamera/ppc64el | ||
852 | 787 | libthrust/amd64 | ||
853 | 788 | libthrust/i386 | ||
854 | 789 | libthrust/ppc64el | ||
855 | 790 | libthrust/s390x | ||
856 | 791 | libyuv/amd64 | ||
857 | 792 | libyuv/ppc64el | ||
858 | 793 | rust-ahash/i386 | ||
859 | 794 | rust-axum/ppc64el | ||
860 | 795 | rust-axum/s390x | ||
861 | 796 | rust-cargo/ppc64el | ||
862 | 797 | rust-cargo-c/s390x | ||
863 | 798 | rust-debcargo/ppc64el | ||
864 | 799 | rust-debcargo/s390x | ||
865 | 800 | rust-etherparse/s390x | ||
866 | 801 | rust-gdk4-x11/arm64 | ||
867 | 802 | rust-gst-plugin-gtk4/ppc64el | ||
868 | 803 | rust-gst-plugin-gtk4/s390x | ||
869 | 804 | rust-gtk4-layer-shell/ppc64el | ||
870 | 805 | rust-gtk4-layer-shell/s390x | ||
871 | 806 | rust-gtk4-macros/ppc64el | ||
872 | 807 | rust-gtk4-macros/s390x | ||
873 | 808 | rust-libadwaita/ppc64el | ||
874 | 809 | rust-libadwaita/s390x | ||
875 | 810 | rust-libshumate/ppc64el | ||
876 | 811 | rust-libshumate/s390x | ||
877 | 812 | rust-libsodium/ppc64el | ||
878 | 813 | rust-prost/ppc64el | ||
879 | 814 | rust-prost/s390x | ||
880 | 815 | rust-proptest/s390x | ||
881 | 816 | rust-pyo3/ppc64el | ||
882 | 817 | rust-smartstring/s390x | ||
883 | 818 | rust-sourceview5/ppc64el | ||
884 | 819 | rust-sourceview5/s390x | ||
885 | 820 | rust-swtchr/ppc64el | ||
886 | 821 | rust-swtchr/s390x | ||
887 | 822 | rust-tinyvec/s390x | ||
888 | 823 | rust-tokio/ppc64el | ||
889 | 824 | rust-tokio/s390x | ||
890 | 825 | rust-uom/amd64 | ||
891 | 826 | rust-x11rb-protocol/amd64 | ||
892 | 827 | rust-x11rb-protocol/arm64 | ||
893 | 828 | rust-x11rb-protocol/ppc64el | ||
894 | 829 | rust-x11rb-protocol/s390x | ||
895 | 830 | rust-yaxpeax-x86/ppc64el | ||
896 | 831 | seqan3/i386 | ||
897 | 832 | spirv-llvm-translator-14/arm64 | ||
898 | 833 | spirv-llvm-translator-14/ppc64el | ||
899 | 834 | spirv-llvm-translator-14/s390x | ||
900 | 835 | spirv-llvm-translator-15/arm64 | ||
901 | 836 | spirv-llvm-translator-15/ppc64el | ||
902 | 837 | spirv-llvm-translator-15/s390x | ||
903 | 838 | spirv-llvm-translator-16/ppc64el | ||
904 | 839 | spirv-llvm-translator-16/s390x | ||
905 | 840 | spirv-llvm-translator-17/ppc64el | ||
906 | 841 | spirv-llvm-translator-17/s390x | ||
907 | 842 | spirv-llvm-translator-18/ppc64el | ||
908 | 843 | spirv-llvm-translator-18/s390x | ||
909 | 844 | termpaint/ppc64el | ||
910 | 845 | xtensor/arm64 | ||
911 | 846 | xtensor/s390x | ||
912 | diff --git a/esm_specials b/esm_specials | |||
913 | 0 | new file mode 100644 | 847 | new file mode 100644 |
914 | index 0000000..82c110e | |||
915 | --- /dev/null | |||
916 | +++ b/esm_specials | |||
917 | @@ -0,0 +1,8 @@ | |||
918 | 1 | ubuntu-advantage-tools/arm64 | ||
919 | 2 | ubuntu-advantage-tools/armhf | ||
920 | 3 | ubuntu-advantage-tools/ppc64el | ||
921 | 4 | ubuntu-advantage-tools/s390x | ||
922 | 5 | update-notifier/arm64 | ||
923 | 6 | update-notifier/armhf | ||
924 | 7 | update-notifier/ppc64el | ||
925 | 8 | update-notifier/s390x | ||
926 | diff --git a/long_tests b/long_tests | |||
927 | 0 | new file mode 100644 | 9 | new file mode 100644 |
928 | index 0000000..696e18e | |||
929 | --- /dev/null | |||
930 | +++ b/long_tests | |||
931 | @@ -0,0 +1,77 @@ | |||
932 | 1 | automake-1.16/arm64 | ||
933 | 2 | automake-1.16/armhf | ||
934 | 3 | cross-toolchain-base/amd64 | ||
935 | 4 | cross-toolchain-base/arm64 | ||
936 | 5 | cross-toolchain-base/armhf | ||
937 | 6 | cross-toolchain-base/i386 | ||
938 | 7 | cross-toolchain-base/ppc64el | ||
939 | 8 | cross-toolchain-base/s390x | ||
940 | 9 | curtin/amd64 | ||
941 | 10 | diffoscope/amd64 | ||
942 | 11 | diffoscope/arm64 | ||
943 | 12 | diffoscope/armhf | ||
944 | 13 | diffoscope/i386 | ||
945 | 14 | diffoscope/ppc64el | ||
946 | 15 | diffoscope/s390x | ||
947 | 16 | epson-inkjet-printer-escpr/arm64 | ||
948 | 17 | epson-inkjet-printer-escpr/armhf | ||
949 | 18 | glibc/arm64 | ||
950 | 19 | glibc/armhf | ||
951 | 20 | gmp-ecm/amd64 | ||
952 | 21 | gmp-ecm/arm64 | ||
953 | 22 | gmp-ecm/armhf | ||
954 | 23 | gmp-ecm/i386 | ||
955 | 24 | gmp-ecm/ppc64el | ||
956 | 25 | gmp-ecm/s390x | ||
957 | 26 | gutenprint/amd64 | ||
958 | 27 | gutenprint/arm64 | ||
959 | 28 | gutenprint/armhf | ||
960 | 29 | gutenprint/i386 | ||
961 | 30 | gutenprint/ppc64el | ||
962 | 31 | gutenprint/s390x | ||
963 | 32 | haveged/arm64 | ||
964 | 33 | haveged/armhf | ||
965 | 34 | lintian/arm64 | ||
966 | 35 | linux-*/arm64 | ||
967 | 36 | linux-*/armhf | ||
968 | 37 | linux/arm64 | ||
969 | 38 | linux/armhf | ||
970 | 39 | macaulay2/arm64 | ||
971 | 40 | mercurial/amd64 | ||
972 | 41 | mercurial/armhf | ||
973 | 42 | mercurial/i386 | ||
974 | 43 | open-iscsi/amd64 | ||
975 | 44 | open-iscsi/arm64 | ||
976 | 45 | open-iscsi/armhf | ||
977 | 46 | open-iscsi/i386 | ||
978 | 47 | open-iscsi/ppc64el | ||
979 | 48 | open-iscsi/s390x | ||
980 | 49 | openjdk-22/armhf | ||
981 | 50 | openjdk-8/armhf | ||
982 | 51 | pandas/armhf | ||
983 | 52 | pytorch/arm64 | ||
984 | 53 | pytorch/ppc64el | ||
985 | 54 | rustc/arm64 | ||
986 | 55 | rustc/armhf | ||
987 | 56 | sagemath/amd64 | ||
988 | 57 | salt/arm64 | ||
989 | 58 | salt/armhf | ||
990 | 59 | simde/armhf | ||
991 | 60 | snapcraft/amd64 | ||
992 | 61 | snapcraft/arm64 | ||
993 | 62 | snapcraft/armhf | ||
994 | 63 | snapcraft/i386 | ||
995 | 64 | snapcraft/ppc64el | ||
996 | 65 | snapcraft/s390x | ||
997 | 66 | snapd/arm64 | ||
998 | 67 | snapd/armhf | ||
999 | 68 | snapd/ppc64el | ||
1000 | 69 | snapd/s390x | ||
1001 | 70 | sshuttle/amd64 | ||
1002 | 71 | sshuttle/arm64 | ||
1003 | 72 | sshuttle/armhf | ||
1004 | 73 | sshuttle/i386 | ||
1005 | 74 | sshuttle/ppc64el | ||
1006 | 75 | sshuttle/s390x | ||
1007 | 76 | systemd/ppc64el | ||
1008 | 77 | systemd-upstream/ppc64el | ||
1009 | diff --git a/never_run b/never_run | |||
1010 | 0 | new file mode 100644 | 78 | new file mode 100644 |
1011 | index 0000000..c2ed6ea | |||
1012 | --- /dev/null | |||
1013 | +++ b/never_run | |||
1014 | @@ -0,0 +1,240 @@ | |||
1015 | 1 | libnih/amd64/bionic | ||
1016 | 2 | libnih/arm64/bionic | ||
1017 | 3 | libnih/armhf/bionic | ||
1018 | 4 | libnih/armhf/xenial | ||
1019 | 5 | libnih/i386/bionic | ||
1020 | 6 | libnih/ppc64el/bionic | ||
1021 | 7 | libnih/s390x/bionic | ||
1022 | 8 | openjdk-13/arm64/focal | ||
1023 | 9 | openjdk-13/armhf/focal | ||
1024 | 10 | openjdk-14/arm64/focal | ||
1025 | 11 | openjdk-14/armhf/focal | ||
1026 | 12 | openjdk-lts/arm64/bionic | ||
1027 | 13 | openjdk-lts/arm64/focal | ||
1028 | 14 | openjdk-lts/armhf/bionic | ||
1029 | 15 | openjdk-lts/i386/bionic | ||
1030 | 16 | openjdk-lts/ppc64el/bionic | ||
1031 | 17 | openjdk-lts/s390x/bionic | ||
1032 | 18 | r-cran-vioplot/amd64/bionic | ||
1033 | 19 | r-cran-vioplot/arm64/bionic | ||
1034 | 20 | r-cran-vioplot/armhf/bionic | ||
1035 | 21 | r-cran-vioplot/i386/bionic | ||
1036 | 22 | r-cran-vioplot/ppc64el/bionic | ||
1037 | 23 | r-cran-vioplot/s390x/bionic | ||
1038 | 24 | stress-ng/amd64/bionic | ||
1039 | 25 | stress-ng/arm64/bionic | ||
1040 | 26 | stress-ng/i386/bionic | ||
1041 | 27 | stress-ng/ppc64el/bionic | ||
1042 | 28 | stress-ng/s390x/bionic | ||
1043 | 29 | upstart/amd64/bionic | ||
1044 | 30 | upstart/arm64/bionic | ||
1045 | 31 | upstart/i386/bionic | ||
1046 | 32 | upstart/ppc64el/bionic | ||
1047 | 33 | upstart/s390x/bionic | ||
1048 | 34 | virtualbox-ext-pack/amd64/bionic | ||
1049 | 35 | virtualbox-ext-pack/amd64/xenial | ||
1050 | 36 | virtualbox-ext-pack/arm64/bionic | ||
1051 | 37 | virtualbox-ext-pack/arm64/xenial | ||
1052 | 38 | virtualbox-ext-pack/armhf/bionic | ||
1053 | 39 | virtualbox-ext-pack/armhf/xenial | ||
1054 | 40 | virtualbox-ext-pack/i386/bionic | ||
1055 | 41 | virtualbox-ext-pack/i386/xenial | ||
1056 | 42 | virtualbox-ext-pack/ppc64el/bionic | ||
1057 | 43 | virtualbox-ext-pack/ppc64el/xenial | ||
1058 | 44 | virtualbox-ext-pack/s390x/bionic | ||
1059 | 45 | virtualbox-ext-pack/s390x/xenial | ||
1060 | 46 | # times out regularly and has never passed | ||
1061 | 47 | altree/armhf/focal | ||
1062 | 48 | altree/armhf/jammy | ||
1063 | 49 | altree/ppc64el/focal | ||
1064 | 50 | altree/ppc64el/jammy | ||
1065 | 51 | # times out https://bugs.debian.org/973359 | ||
1066 | 52 | booth/armhf/bionic | ||
1067 | 53 | booth/armhf/focal | ||
1068 | 54 | booth/i386/bionic | ||
1069 | 55 | # times out regularly and armhf isn't great about clean ups | ||
1070 | 56 | gfan/armhf/focal | ||
1071 | 57 | # temporary additions for jammy | ||
1072 | 58 | # this hasn't passed for multiple releases of Ubuntu | ||
1073 | 59 | debci/amd64/jammy | ||
1074 | 60 | debci/arm64/jammy | ||
1075 | 61 | debci/armhf/jammy | ||
1076 | 62 | debci/i386/jammy | ||
1077 | 63 | debci/ppc64el/jammy | ||
1078 | 64 | debci/s390x/jammy | ||
1079 | 65 | |||
1080 | 66 | # times out regularly and armhf isn't great about clean ups | ||
1081 | 67 | pglogical/armhf/bionic | ||
1082 | 68 | pglogical/armhf/focal | ||
1083 | 69 | python-ase/armhf/jammy | ||
1084 | 70 | sabnzbdplus/armhf/jammy | ||
1085 | 71 | |||
1086 | 72 | # assimp fails on 32 bit arches https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=995859 | ||
1087 | 73 | assimp/armhf/jammy | ||
1088 | 74 | # it dumps core and we can't add more memory on armhf | ||
1089 | 75 | assimp/armhf/focal | ||
1090 | 76 | |||
1091 | 77 | # tests timing out because the package is incompatible with firefox shipped as | ||
1092 | 78 | # a snap. see https://launchpad.net/bugs/1987959 | ||
1093 | 79 | libfirefox-marionette-perl/amd64/jammy | ||
1094 | 80 | libfirefox-marionette-perl/arm64/jammy | ||
1095 | 81 | libfirefox-marionette-perl/armhf/jammy | ||
1096 | 82 | libfirefox-marionette-perl/i386/jammy | ||
1097 | 83 | libfirefox-marionette-perl/ppc64el/jammy | ||
1098 | 84 | libfirefox-marionette-perl/s390x/jammy | ||
1099 | 85 | |||
1100 | 86 | # the tests time out after calling `setup_apt` which is tailored to Debian and | ||
1101 | 87 | # fails on Ubuntu. LP: #1983522 | ||
1102 | 88 | cryptsetup/amd64/jammy | ||
1103 | 89 | cryptsetup/arm64/jammy | ||
1104 | 90 | cryptsetup/i386/jammy | ||
1105 | 91 | cryptsetup/ppc64el/jammy | ||
1106 | 92 | cryptsetup/s390x/jammy | ||
1107 | 93 | |||
1108 | 94 | # times out on s390x https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1016937 | ||
1109 | 95 | atop/s390x/jammy | ||
1110 | 96 | |||
1111 | 97 | # times out on non-amd64 arches | ||
1112 | 98 | auto-multiple-choice/arm64/bionic | ||
1113 | 99 | auto-multiple-choice/armhf/bionic | ||
1114 | 100 | auto-multiple-choice/ppc64el/bionic | ||
1115 | 101 | auto-multiple-choice/s390x/bionic | ||
1116 | 102 | |||
1117 | 103 | # times out https://bugs.debian.org/953939 | ||
1118 | 104 | bamtools/arm64/bionic | ||
1119 | 105 | bamtools/arm64/focal | ||
1120 | 106 | # times out https://bugs.debian.org/987023 | ||
1121 | 107 | bamtools/armhf/bionic | ||
1122 | 108 | bamtools/armhf/focal | ||
1123 | 109 | bamtools/ppc64el/bionic | ||
1124 | 110 | # times out https://bugs.debian.org/987023 | ||
1125 | 111 | bamtools/s390x/bionic | ||
1126 | 112 | bamtools/s390x/focal | ||
1127 | 113 | |||
1128 | 114 | # started timing out in 2022 per Debian | ||
1129 | 115 | # confirmed via a local test on amd64 | ||
1130 | 116 | astroplan/amd64/bionic | ||
1131 | 117 | |||
1132 | 118 | # running raspi kernel tests in OpenStack is pointless since the relevant | ||
1133 | 119 | # kernel code is never exercised. LP: #1930082 | ||
1134 | 120 | linux-raspi/all/all | ||
1135 | 121 | linux-raspi2/all/all | ||
1136 | 122 | linux-raspi-5.4/all/all | ||
1137 | 123 | # 2024-03-30 the above might be true with linux-meta-raspi which depends | ||
1138 | 124 | # on linux-raspi | ||
1139 | 125 | linux-meta-raspi/all/all | ||
1140 | 126 | |||
1141 | 127 | # linux-starfive is for riscv64 and nothing else | ||
1142 | 128 | linux-starfive/all/mantic | ||
1143 | 129 | linux-starfive/all/noble | ||
1144 | 130 | |||
1145 | 131 | # Never run EOL kernels ADT-165 | ||
1146 | 132 | # generated with kteam-tools/stable/swm-autopkgtest-config | ||
1147 | 133 | # update approximately every 6 months | ||
1148 | 134 | # | ||
1149 | 135 | linux-ibm/all/mantic | ||
1150 | 136 | linux-allwinner-5.17/all/jammy | ||
1151 | 137 | linux-allwinner-5.19/all/jammy | ||
1152 | 138 | linux-aws-5.19/all/jammy | ||
1153 | 139 | linux-aws-6.2/all/jammy | ||
1154 | 140 | linux-azure-5.19/all/jammy | ||
1155 | 141 | linux-azure-6.2/all/jammy | ||
1156 | 142 | linux-azure-fde-5.19/all/jammy | ||
1157 | 143 | linux-azure-fde-6.2/all/jammy | ||
1158 | 144 | linux-gcp-5.19/all/jammy | ||
1159 | 145 | linux-gcp-6.2/all/jammy | ||
1160 | 146 | linux-hwe-5.17/all/jammy | ||
1161 | 147 | linux-hwe-5.19/all/jammy | ||
1162 | 148 | linux-hwe-6.2/all/jammy | ||
1163 | 149 | linux-lowlatency-hwe-5.19/all/jammy | ||
1164 | 150 | linux-lowlatency-hwe-6.2/all/jammy | ||
1165 | 151 | linux-oem-5.17/all/jammy | ||
1166 | 152 | linux-oem-6.0/all/jammy | ||
1167 | 153 | linux-oem-6.1/all/jammy | ||
1168 | 154 | linux-oracle-5.19/all/jammy | ||
1169 | 155 | linux-oracle-6.2/all/jammy | ||
1170 | 156 | linux-riscv/all/jammy | ||
1171 | 157 | linux-riscv-5.19/all/jammy | ||
1172 | 158 | linux-starfive-5.17/all/jammy | ||
1173 | 159 | linux-starfive-5.19/all/jammy | ||
1174 | 160 | linux-starfive-6.2/all/jammy | ||
1175 | 161 | linux-uc22-lowlatency/all/jammy | ||
1176 | 162 | linux-adv-uno420/all/focal | ||
1177 | 163 | linux-adv-uno420-uc20-efi/all/focal | ||
1178 | 164 | linux-aws-5.11/all/focal | ||
1179 | 165 | linux-aws-5.13/all/focal | ||
1180 | 166 | linux-aws-5.8/all/focal | ||
1181 | 167 | linux-azure-5.11/all/focal | ||
1182 | 168 | linux-azure-5.13/all/focal | ||
1183 | 169 | linux-azure-5.8/all/focal | ||
1184 | 170 | linux-azure-cvm/all/focal | ||
1185 | 171 | linux-azure-fde/all/focal | ||
1186 | 172 | linux-gcp-5.11/all/focal | ||
1187 | 173 | linux-gcp-5.13/all/focal | ||
1188 | 174 | linux-gcp-5.8/all/focal | ||
1189 | 175 | linux-gke/all/focal | ||
1190 | 176 | linux-gke-5.15/all/focal | ||
1191 | 177 | linux-hwe-5.11/all/focal | ||
1192 | 178 | linux-hwe-5.13/all/focal | ||
1193 | 179 | linux-hwe-5.8/all/focal | ||
1194 | 180 | linux-intel/all/focal | ||
1195 | 181 | linux-intel-5.13/all/focal | ||
1196 | 182 | linux-oem-5.10/all/focal | ||
1197 | 183 | linux-oem-5.13/all/focal | ||
1198 | 184 | linux-oem-5.14/all/focal | ||
1199 | 185 | linux-oem-5.6/all/focal | ||
1200 | 186 | linux-oracle-5.11/all/focal | ||
1201 | 187 | linux-oracle-5.13/all/focal | ||
1202 | 188 | linux-oracle-5.8/all/focal | ||
1203 | 189 | linux-qcomm/all/focal | ||
1204 | 190 | linux-raspi2/all/focal | ||
1205 | 191 | linux-riscv/all/focal | ||
1206 | 192 | linux-riscv-5.11/all/focal | ||
1207 | 193 | linux-riscv-5.13/all/focal | ||
1208 | 194 | linux-riscv-5.8/all/focal | ||
1209 | 195 | linux-uc20-intel/all/focal | ||
1210 | 196 | linux-uc20-qcomm/all/focal | ||
1211 | 197 | # 2024-03-28 swm-autopkgtest-config wanted | ||
1212 | 198 | # to drop these but bdmurray is conservative | ||
1213 | 199 | linux-aws-5.0/all/bionic | ||
1214 | 200 | linux-aws-5.3/all/bionic | ||
1215 | 201 | linux-aws-edge/all/bionic | ||
1216 | 202 | linux-azure/all/bionic | ||
1217 | 203 | linux-azure-5.3/all/bionic | ||
1218 | 204 | linux-azure-edge/all/bionic | ||
1219 | 205 | linux-bluefield/all/bionic | ||
1220 | 206 | linux-denver/all/bionic | ||
1221 | 207 | linux-gcp/all/bionic | ||
1222 | 208 | linux-gcp-5.3/all/bionic | ||
1223 | 209 | linux-gcp-edge/all/bionic | ||
1224 | 210 | linux-gke-4.15/all/bionic | ||
1225 | 211 | linux-gke-5.0/all/bionic | ||
1226 | 212 | linux-gke-5.3/all/bionic | ||
1227 | 213 | linux-gke-5.4/all/bionic | ||
1228 | 214 | linux-gkeop-5.4/all/bionic | ||
1229 | 215 | linux-hwe/all/bionic | ||
1230 | 216 | linux-hwe-5.0/all/bionic | ||
1231 | 217 | linux-mt8516/all/bionic | ||
1232 | 218 | linux-oem/all/bionic | ||
1233 | 219 | linux-oracle-5.0/all/bionic | ||
1234 | 220 | linux-oracle-5.3/all/bionic | ||
1235 | 221 | linux-raspi2-5.3/all/bionic | ||
1236 | 222 | |||
1237 | 223 | # it's deps aren't available anyway | ||
1238 | 224 | libreoffice/i386/focal | ||
1239 | 225 | libreoffice/i386/jammy | ||
1240 | 226 | #libreoffice/i386/mantic | ||
1241 | 227 | |||
1242 | 228 | # it's deps aren't available anyway | ||
1243 | 229 | ubuntu-release-upgrader/i386/focal | ||
1244 | 230 | ubuntu-release-upgrader/i386/jammy | ||
1245 | 231 | ubuntu-release-upgrader/i386/mantic | ||
1246 | 232 | ubuntu-release-upgrader/i386/noble | ||
1247 | 233 | |||
1248 | 234 | # something keeps queuing up migration-reference/0 tests | ||
1249 | 235 | linux-nvidia-5.19/amd64/jammy | ||
1250 | 236 | linux-nvidia-5.19/arm64/jammy | ||
1251 | 237 | |||
1252 | 238 | # something keeps queuing up migration-reference/0 tests which fail | ||
1253 | 239 | # ERROR: erroneous package: rules extract failed with exit code 1 | ||
1254 | 240 | firefox/s390x/focal |
hehe, you need to fix the target methinks :)