Skip to content

Commit

Permalink
Merge pull request #232 from nix-community/update-nixos-24.05
Browse files Browse the repository at this point in the history
ci: fixup attribute names
  • Loading branch information
Mic92 authored Jun 7, 2024
2 parents 606a46c + 3ef996d commit f267906
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ shopt -s lastpipe

build_netboot_image() {
declare -r tag=$1 channel=$2 arch=$3 tmp=$4
img=$(nix build --print-out-paths --option accept-flake-config true -L ".#packages.${arch}.netboot-${channel//./}")
img=$(nix build --print-out-paths --option accept-flake-config true -L ".#packages.${arch}.netboot-nixos-${channel//./}")
kernel=$(echo "$img"/*Image)
kernelName=$(basename "$kernel")
ln -s "$kernel" "$tmp/$kernelName-$arch"
Expand All @@ -23,13 +23,13 @@ build_netboot_image() {

build_kexec_installer() {
declare -r channel=$1 arch=$2 tmp=$3 variant=$4
out=$(nix build --print-out-paths --option accept-flake-config true -L ".#packages.${arch}.kexec-installer-${channel}${variant}")
out=$(nix build --print-out-paths --option accept-flake-config true -L ".#packages.${arch}.kexec-installer-nixos-${channel}${variant}")
echo "$out/nixos-kexec-installer${variant}-$arch.tar.gz"
}

build_image_installer() {
declare -r channel=$1 arch=$2 tmp=$3
out=$(nix build --print-out-paths --option accept-flake-config true -L ".#packages.${arch}.image-installer-${channel//./}")
out=$(nix build --print-out-paths --option accept-flake-config true -L ".#packages.${arch}.image-installer-nixos-${channel//./}")
echo "$out/iso/nixos-installer-${arch}.iso"
}

Expand Down

0 comments on commit f267906

Please sign in to comment.