mirror of
https://github.com/outbackdingo/debos.git
synced 2026-01-27 18:18:45 +00:00
Nothing special here - a simple test.yaml akin to the existing ones. The pacman.conf file is effectively vanilla config that comes with the pacman package, while the mirrorlist file is a list of UK https mirrors that I've been using for years. Note that there is no canonical mirror for Arch. The top-level/tier 1 Arch server should _not_ be used as per the official recommendation. Instead we use the mirrors set in the official arch docker tooling. v2: - Also install archlinux-keyring and makepkg - Use arch + backend=qemu only testing matrix v3: - Use the same mirrors as the Arch docker images tooling - Build and install pacman locally, until we get an official package v4: - Remove the local pacman build - it's available in backports v5: - Explicitly pull arch-install-scripts from backports, normal one lack pacstrap v6: - Manually pull the latest keyring - Debian one is outdated Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
14 lines
255 B
YAML
14 lines
255 B
YAML
---
|
|
{{- $architecture := or .architecture "amd64"}}
|
|
architecture: {{$architecture}}
|
|
|
|
actions:
|
|
- action: pacstrap
|
|
config: pacman.conf
|
|
mirror: mirrorlist
|
|
|
|
- action: pacman
|
|
description: Install some base packages
|
|
packages:
|
|
- procps
|