process-compose-flake/test.sh

13 lines
335 B
Bash
Raw Permalink Normal View History

set -euxo pipefail
cd "$(dirname "$0")"
cd ./example
# First, build the example.
nix build -L --no-link --print-out-paths --override-input process-compose-flake ..
2023-06-14 20:03:52 +03:00
# On NixOS, run the VM tests to test runtime behaviour
2023-06-14 20:58:02 +03:00
if command -v nixos-rebuild &> /dev/null; then
nix flake check -L --override-input process-compose-flake ..
fi