forked from ALHP/ALHP.GO
Switched to parsing srcinfo with channels on all available cpus, speeding up srcinfo-parsing and queue generation by a lot. New memory-limit based building will max out the available memory while not building the same packages at the same time for different marchs, fixing some long-standing bugs like firefox not building at the same time because the same ports are used for profile-based optimization. This also drops the artificial delay on build-start, speeding up things even more. This also means there is no hard-coded limit on how many packages can be build at once anymore. As long as there is RAM available, builds will be started.
71 lines
1.5 KiB
YAML
71 lines
1.5 KiB
YAML
arch: x86_64
|
|
repos:
|
|
- core
|
|
- extra
|
|
- community
|
|
|
|
svn2git:
|
|
upstream-core-extra: "https://github.com/archlinux/svntogit-packages.git"
|
|
upstream-community: "https://github.com/archlinux/svntogit-community.git"
|
|
|
|
kernel_to_patch:
|
|
- linux
|
|
- linux-lts
|
|
- linux-zen
|
|
- linux-hardened
|
|
|
|
kernel_patches:
|
|
4.19: "https://raw.githubusercontent.com/graysky2/kernel_compiler_patch/master/more-uarches-for-kernel-4.19-5.4.patch"
|
|
5.5: "none"
|
|
5.8: "https://raw.githubusercontent.com/graysky2/kernel_compiler_patch/master/more-uarches-for-kernel-5.8-5.14.patch"
|
|
5.15: "https://raw.githubusercontent.com/graysky2/kernel_compiler_patch/master/more-uarches-for-kernel-5.15%2B.patch"
|
|
linux-zen: "skip"
|
|
|
|
db:
|
|
driver: pgx
|
|
connect_to: "postgres://username:password@localhost:5432/database_name"
|
|
|
|
basedir:
|
|
repo: /var/lib/alhp/repo/
|
|
work: /var/lib/alhp/workspace/
|
|
debug: /var/lib/alhp/debug/
|
|
|
|
march:
|
|
- x86-64-v3
|
|
|
|
blacklist:
|
|
packages:
|
|
- tensorflow
|
|
- tensorflow-cuda
|
|
- gcc
|
|
repo:
|
|
- testing
|
|
- i686
|
|
- staging
|
|
- unstable
|
|
lto:
|
|
- llvm
|
|
- rust
|
|
|
|
status:
|
|
class:
|
|
skipped: "secondary"
|
|
queued: "warning"
|
|
latest: "primary"
|
|
failed: "danger"
|
|
signing: "success"
|
|
building: "info"
|
|
unknown: "dark"
|
|
|
|
build:
|
|
# number of workers total
|
|
worker: 4
|
|
makej: 8
|
|
checks: true
|
|
# how much memory ALHP should use
|
|
# this will also decide how many builds will run concurrently,
|
|
# since ALHP will try to optimise the queue for speed while not going over this limit
|
|
memory_limit: "16gb"
|
|
|
|
logging:
|
|
level: INFO |