Cache flake on Windows

This commit is contained in:
Manuel Thalmann 2024-09-28 16:13:56 +02:00
parent 26592d589c
commit 42322c7428
3 changed files with 21 additions and 13 deletions

View file

@ -76,6 +76,7 @@ $null = New-Module {
$escapedPath = (fish -c 'string escape $argv' "$scriptPath");
fish -c ". $escapedPath; $Script";
} else {
if (-not $env:VALHALLA_FLAKE_ROOT) {
$cleanup = { };
$projectRoot = "$PSScriptRoot/../../..";
$archisoDir = "$projectRoot/archiso";
@ -89,6 +90,10 @@ $null = New-Module {
$cleanup = { & $git restore --staged "$archisoDir" };
}
$env:VALHALLA_FLAKE_ROOT = (Invoke-Nix flake metadata (ConvertTo-LinuxPath "$PSScriptRoot/../../..") --json | ConvertFrom-Json).path;
& $cleanup *> $null;
}
$output = Invoke-Fish -c ". $(ConvertTo-LinuxPath $scriptPath); $Script";
if (-not $?) {
@ -96,8 +101,6 @@ $null = New-Module {
} else {
$output;
}
& $cleanup *> $null;
}
}

View file

@ -67,7 +67,7 @@ $null = New-Module {
$Global:ErrorActionPreference = $NonInteractive.IsPresent ? 'Continue' : 'Inquire';
if ($IsWindows) {
$env:WSLENV = "CONFIG_NAME";
$env:WSLENV = "CONFIG_NAME:VALHALLA_FLAKE_ROOT";
Backup-PowerScheme;
}

View file

@ -1,6 +1,7 @@
#!/bin/env fish
function evalFlake --argument-names config property
set -l argv $argv[3..]
set -l flakePath "$(realpath (status dirname))/../../..";
argparse --ignore-unknown "apply=" "json" -- $argv
if [ -z "$_flag_json" ]
@ -13,6 +14,10 @@ function evalFlake --argument-names config property
set _flag_apply "_: _"
end
if [ -n "$VALHALLA_FLAKE_ROOT" ]
set flakePath "$VALHALLA_FLAKE_ROOT"
end
if [ -n "$config" ]
set config ".$config"
set _flag_apply "_: ($_flag_apply) ((import $(realpath --relative-to (pwd) "$(status dirname)/../../../lib/eval-attribute.nix")) _)"
@ -21,6 +26,6 @@ function evalFlake --argument-names config property
PROPERTY="$property" \
nix eval --impure --extra-experimental-features "nix-command flakes" \
--apply "$_flag_apply" \
"$(realpath (status dirname))/../../..#valhalla$config" \
"$flakePath#valhalla$config" \
$argv
end