Some checks failed
Build all the nodes / ap01 (push) Successful in 1m13s
Build all the nodes / build01 (push) Successful in 2m10s
Build all the nodes / bridge01 (push) Successful in 2m10s
Build all the nodes / geo01 (push) Successful in 2m9s
Build all the nodes / netcore02 (push) Successful in 20s
Build all the nodes / geo02 (push) Successful in 1m31s
Build all the nodes / hypervisor01 (push) Successful in 1m52s
Build all the nodes / hypervisor03 (push) Successful in 1m52s
Build all the nodes / hypervisor02 (push) Successful in 2m11s
Build the shell / build-shell (push) Successful in 41s
Build all the nodes / vault01 (push) Successful in 2m17s
Build all the nodes / rescue01 (push) Successful in 2m41s
Run pre-commit on all files / pre-commit (push) Successful in 43s
Build all the nodes / tower01 (push) Successful in 2m36s
Build all the nodes / web02 (push) Successful in 2m16s
Build all the nodes / storage01 (push) Successful in 2m51s
Build all the nodes / web01 (push) Successful in 2m35s
Build all the nodes / web03 (push) Successful in 1m42s
Build all the nodes / compute01 (push) Failing after 8m59s
18 lines
478 B
Nix
18 lines
478 B
Nix
# SPDX-FileCopyrightText: 2024 Maurice Debray <maurice.debray@dgnum.eu>
|
|
#
|
|
# SPDX-License-Identifier: EUPL-1.2
|
|
|
|
let
|
|
cache-info = {
|
|
infra = {
|
|
public-key = "infra.tvix-store.dgnum.eu-1:8CAY64o3rKjyw2uA5mzr/aTzstnc+Uj4g8OC6ClG1m8=";
|
|
url = "https://tvix-store.dgnum.eu/infra";
|
|
};
|
|
};
|
|
in
|
|
|
|
{ caches }:
|
|
{
|
|
substituters = builtins.map (cache: cache-info.${cache}.url) caches;
|
|
trusted-public-keys = builtins.map (cache: cache-info.${cache}.public-key) caches;
|
|
}
|