1
0
forked from clan/clan-core

reduce impure tests to just instantiate the template

This commit is contained in:
Jörg Thalheim 2023-08-27 10:05:48 +02:00
parent 4cc40865f5
commit c9adf12e72
3 changed files with 12 additions and 22 deletions

View File

@ -1,4 +1,4 @@
name: checks-integration
name: checks-impure
on:
pull_request:
push:
@ -8,4 +8,4 @@ jobs:
runs-on: nix
steps:
- uses: actions/checkout@v3
- run: nix run .#checks-impure
- run: nix run .#impure-checks

View File

@ -1,6 +1,6 @@
{ self, ... }: {
imports = [
./integration/flake-module.nix
./impure/flake-module.nix
];
perSystem = { pkgs, lib, self', ... }: {
checks =

View File

@ -1,17 +1,16 @@
{ self, ... }: {
perSystem = { pkgs, lib, self', ... }:
perSystem = { pkgs, lib, ... }:
let
integrationTests = {
check-clan-create = pkgs.writeShellScriptBin "check-clan-init" ''
impureChecks = {
check-clan-template = pkgs.writeShellScriptBin "check-clan-template" ''
#!${pkgs.bash}/bin/bash
set -euo pipefail
export TMPDIR=$(${pkgs.coreutils}/bin/mktemp -d)
trap "${pkgs.coreutils}/bin/chmod -R +w '$TMPDIR'; ${pkgs.coreutils}/bin/rm -rf '$TMPDIR'" EXIT
export PATH="${lib.makeBinPath [
pkgs.git
pkgs.gnugrep
pkgs.gitMinimal
pkgs.openssh
pkgs.nix
self'.packages.clan-cli
]}"
cd $TMPDIR
@ -21,29 +20,20 @@
echo ensure flake outputs can be listed
nix flake show
echo create a machine
clan machines create machine1
echo check machine1 exists
clan machines list | grep -q machine1
echo check machine1 appears in flake output
nix flake show | grep -q machine1
'';
};
in
{
packages =
integrationTests // {
impureChecks // {
# a script that executes all other checks
checks-impure = pkgs.writeShellScriptBin "checks-impure" ''
impure-checks = pkgs.writeShellScriptBin "impure-checks" ''
#!${pkgs.bash}/bin/bash
set -euo pipefail
${lib.concatMapStringsSep "\n" (name: ''
echo -e "\n\nrunning check ${name}\n"
${integrationTests.${name}}/bin/*
'') (lib.attrNames integrationTests)}
${impureChecks.${name}}/bin/*
'') (lib.attrNames impureChecks)}
'';
};
};