about summary refs log tree commit diff stats
path: root/scripts/test_build.sh
blob: eeb8572b771aa7c061baffc2d915d224aeb462ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env sh

[ "$#" -ne 2 ] && {
    echo "Usage: test_build <TEST_TARGET> <BUILD_NODE>" 1>&2
    exit 2
}

test_target="$1"
build_node="$2"

nix build .#checks.x86_64-linux."$test_target".nodes."$build_node".system.build.toplevel

# vim: ft=sh