gitlab-ci: make an attempt to refactor things to a single Eval/Build

This commit is contained in:
Luke Granger-Brown 2023-03-12 14:00:42 +00:00
parent 721a7e6828
commit f06976410d
2 changed files with 43 additions and 8 deletions

18
ci-root-linux.nix Normal file
View file

@ -0,0 +1,18 @@
let
depot = (import ./default.nix { });
pkgs = depot.third_party.nixpkgs;
inherit (pkgs) lib;
arches = [ "x86_64-linux" "aarch64-linux" ];
archRoots = builtins.listToAttrs (map (name: { inherit name; value = (import ./ci-root.nix { system = name; }); }) arches);
combined = pkgs.runCommand "systems.json" {
nativeBuildInputs = [ pkgs.jq ];
} ''
jq -s add ${builtins.concatStringsSep " " (lib.mapAttrsToList (name: value: "'${value}/other-systemPathJSON'") archRoots)} > $out
'';
in
pkgs.linkFarm "ci-linux-combined" [
{ name = "x86_64-linux"; path = (import ./ci-root.nix { system = "x86_64-linux"; }); }
{ name = "aarch64-linux"; path = (import ./ci-root.nix { system = "aarch64-linux"; }); }
{ name = "combined-systems"; path = combined; }
]

View file

@ -13,18 +13,35 @@ let
"nix build -v -f ./ci-root.nix --system ${system} --argstr system ${system} --substituters \"https://cache.nixos.org/ s3://lukegb-nix-cache?endpoint=storage.googleapis.com&trusted=1\""
"nix copy -v --to 's3://lukegb-nix-cache?endpoint=storage.googleapis.com' ./result"
];
timeout = "6h";
allow_failure = true;
tags = [ "macos" ];
};
linux = system: {
linux-eval = {
stage = "build";
image = "nixos/nix:latest";
script = [
"nix run -f ./ third_party.nixpkgs.bash -c ./hack/populate_secrets.sh"
"nix build -v -f ./ci-root.nix --system ${system} --argstr system ${system} --substituters \"https://cache.nixos.org/ s3://lukegb-nix-cache?endpoint=storage.googleapis.com&trusted=1\""
"nix-instantiate ./ci-root-linux.nix --option substituters \"https://cache.nixos.org/ s3://lukegb-nix-cache?endpoint=storage.googleapis.com&trusted=1\" > drv-name"
"ln -s $(cat drv-name) ./result"
"nix run -f ./ go.nix.bcacheup -c bcacheup --cache_url vaultgs://lukegb-nix-cache --vault_addr unix:///run/tokend/sock --vault_token_source gcp/roleset/binary-cache-deployer/token ./result"
"cat ./result/other-systemPathJSON > systems.json"
];
artifacts = {
paths = [ "drv-name" ];
expire_in = "30 days";
};
tags = [ "cacher" ];
};
linux-combined = {
stage = "build";
image = "nixos/nix:latest";
needs = [{ job = "nixCache-linux-eval"; artifacts = true; }];
script = [
"nix-store --realise $(cat drv-name) --option substituters \"https://cache.nixos.org/ s3://lukegb-nix-cache?endpoint=storage.googleapis.com&trusted=1\""
"nix run -f ./ go.nix.bcacheup -c bcacheup --cache_url vaultgs://lukegb-nix-cache --vault_addr unix:///run/tokend/sock --vault_token_source gcp/roleset/binary-cache-deployer/token ./result"
"cat ./result/combined-systems > systems.json"
];
timeout = "6h";
artifacts = {
paths = [ "systems.json" ];
expire_in = "30 days";
@ -34,14 +51,14 @@ let
in {
stages = [ "build" "deploy-mach" "deploy-other" ];
nixCache-x86_64-linux = linux "x86_64-linux";
nixCache-aarch64-linux = linux "aarch64-linux";
nixCache-linux-eval = linux-eval;
nixCache-linux = linux-combined;
nixCache-x86_64-darwin = macOS "x86_64-darwin";
nixCache-aarch64-darwin = macOS "aarch64-darwin";
flipperzero-firmware = {
stage = "deploy-other";
needs = [{ job = "nixCache-x86_64-linux"; artifacts = false; }];
needs = [{ job = "nixCache-linux"; artifacts = false; }];
tags = [ "cacher" ];
only.refs = [ "branch/default" ];
@ -52,7 +69,7 @@ let
};
lukegbcom = {
stage = "deploy-other";
needs = [{ job = "nixCache-x86_64-linux"; artifacts = false; }];
needs = [{ job = "nixCache-linux"; artifacts = false; }];
tags = [ "cacher" ];
only.refs = [ "branch/default" ];
@ -67,7 +84,7 @@ let
deployMachs = lib.filterAttrs (name: cfg: cfg.config.my.deploy.enable) depot.ops.nixos.systemConfigs;
deployStage = machName: mach: ({
stage = "deploy-mach";
needs = [{ job = "nixCache-${mach.config.my.systemType}"; artifacts = true; }];
needs = [{ job = "nixCache-linux"; artifacts = true; }];
tags = [ "deployer" ];
resource_group = machName;