nixos-images/build-images.sh
2021-06-10 08:10:06 +02:00

33 lines
938 B
Bash
Executable file

#!/usr/bin/env nix-shell
#!nix-shell -p nix -p coreutils -p bash -p gh -i bash
set -xeuo pipefail
build_netboot_image() {
tag=$1
arch=$2
img=$(nix-build --no-out-link -I "nixpkgs=https://github.com/NixOS/nixpkgs/archive/${tag}.tar.gz" '<nixpkgs/nixos/release.nix>' -A "netboot.$arch")
echo $(readlink "$img/bzImage")
echo $(readlink "$img/initrd")
}
main() {
tag=${1:-nixos-unstable}
arch=${2:-x86_64-linux}
sha256s=()
tmp="$(mktemp -d)"
trap 'rm -rf -- "$tmp"' EXIT
assets=($(build_netboot_image "$tag" "$arch"))
for asset in "${assets[@]}"; do
pushd "$(dirname $asset)"
sha256sum "$(basename $asset)" > "$TMP/sha256sums"
popd
done
assets+=("$TMP/sha256sums")
# Since we cannot atomically update a release, we delete the old one before
gh release delete "$tag" </dev/null || true
gh release create --title "$tag (build $(date +"%Y-%m-%d"))" "$tag" "${assets[@]}" </dev/null
}
main "$@"