Commit 0df1ff92 authored by Jochen Sprickerhof's avatar Jochen Sprickerhof Committed by Holger Levsen
Browse files

rdn: fix supported worker architectures



(cherry picked from commit 57538dcc07a73757c99a2ab3be24058b7d93026f)
Signed-off-by: default avatarHolger Levsen <holger@layer-acht.org>
parent 0bbb057c
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
## The rebuilderd to connect to
endpoint = "https://reproduce.debian.net/armhf"
supported_architectures = ["arm64", "armel", "armhf"]

## The server would either allowlist our key or require a signup secret
signup_secret = "INSECURE"

+2 −0
Original line number Diff line number Diff line
## The rebuilderd to connect to
endpoint = "https://reproduce.debian.net/arm64"
supported_architectures = ["arm64", "armel", "armhf"]

## The server would either allowlist our key or require a signup secret
signup_secret = "INSECURE"

+2 −0
Original line number Diff line number Diff line
## The rebuilderd to connect to
endpoint = "https://reproduce.debian.net/armel"
supported_architectures = ["arm64", "armel", "armhf"]

## The server would either allowlist our key or require a signup secret
signup_secret = "INSECURE"

+2 −0
Original line number Diff line number Diff line
## The rebuilderd to connect to
endpoint = "https://reproduce.debian.net/ppc64el"
supported_architectures = ["ppc64el"]

## The server would either allowlist our key or require a signup secret
signup_secret = "INSECURE"

+2 −0
Original line number Diff line number Diff line
## The rebuilderd to connect to
endpoint = "https://reproduce.debian.net/riscv64"
supported_architectures = ["riscv64"]

## The server would either allowlist our key or require a signup secret
signup_secret = "INSECURE"

Loading