Tom Hubrecht
bbdae45f4f
All checks were successful
Check workflows / check_workflows (push) Successful in 37s
Build all the nodes / ap01 (push) Successful in 1m30s
Build all the nodes / bridge01 (push) Successful in 2m18s
Build all the nodes / geo02 (push) Successful in 2m21s
Build all the nodes / geo01 (push) Successful in 2m22s
Build all the nodes / hypervisor01 (push) Successful in 1m56s
Build all the nodes / compute01 (push) Successful in 2m50s
Build all the nodes / hypervisor02 (push) Successful in 1m43s
Build all the nodes / netcore02 (push) Successful in 51s
Build all the nodes / hypervisor03 (push) Successful in 1m58s
Build all the nodes / rescue01 (push) Successful in 2m17s
Build all the nodes / storage01 (push) Successful in 2m37s
Build all the nodes / web02 (push) Successful in 2m8s
Build the shell / build-shell (push) Successful in 43s
Build all the nodes / vault01 (push) Successful in 2m32s
Run pre-commit on all files / pre-commit (push) Successful in 37s
Build all the nodes / web01 (push) Successful in 2m42s
Build all the nodes / web03 (push) Successful in 1m49s
31 lines
739 B
Nix
31 lines
739 B
Nix
# SPDX-FileCopyrightText: 2024 Tom Hubrecht <tom.hubrecht@dgnum.eu>
|
|
#
|
|
# SPDX-License-Identifier: EUPL-1.2
|
|
|
|
{ nix-actions, ... }:
|
|
|
|
{
|
|
name = "Build the shell";
|
|
on = {
|
|
pull_request.branches = [ "main" ];
|
|
push.branches = [ "main" ];
|
|
};
|
|
|
|
jobs = {
|
|
build-shell = {
|
|
runs-on = "nix";
|
|
steps = [
|
|
{ uses = "actions/checkout@v3"; }
|
|
{
|
|
name = "Build and cache shell";
|
|
run = ''nix-shell -A eval-shell --run "nix-build-and-cache -A devShell"'';
|
|
env = {
|
|
STORE_ENDPOINT = "https://tvix-store.dgnum.eu/infra-signing/";
|
|
STORE_USER = "admin";
|
|
STORE_PASSWORD = nix-actions.lib.secret "STORE_PASSWORD";
|
|
};
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|