/ .radicle / build.conf
build.conf
 1  # Simple-ci build configuration file
 2  PIPELINE="podman"
 3  TAG="latest"
 4  ARCHES=("amd64" "arm64") # Architectures to build ("arch1" "arch2" ...)
 5  ENCRYPT="false" # Encrypt the image before pushing it to the server
 6  SIGN="true" # Sign the image
 7  EMBED_KEYS="false"
 8  UPLOAD="true"
 9  
10  # Repostory namespace (usually the username - used to generate the image path)
11  REG_USER="glockgmbh"
12  
13  # Registry address (only the domain name)
14  REG_ADDR="docker.io" # Registry to use (Used to generate the image path)
15  
16  # Root SSH key file to embed if requested
17  SSH_KEYFILE=""
18  
19  # Remote build hosts.
20  # If empty: Uses quemu-static for the build if the requested architecture
21  # is not the same as the host.
22  # The remotes have to be set up as system connections in Podman and use their
23  # 'friendly' names here.
24  AMD64_REMOTE="" # x86_64 build host
25  ARM64_REMOTE="" # aarch64 build host
26  RISCV64_REMOTE="" # riscv64 build host