2020-12-02 11:09:08 -08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# This script can also be run locally for testing:
|
|
|
|
# scenario=default ./build.sh
|
|
|
|
#
|
|
|
|
# When variable CIRRUS_CI is unset, this script leaves no persistent traces on the host system.
|
|
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
2021-12-10 05:07:56 -08:00
|
|
|
if [[ -v CIRRUS_CI ]]; then
|
2020-12-11 04:26:07 -08:00
|
|
|
if [[ ! -e /dev/kvm ]]; then
|
|
|
|
>&2 echo "No KVM available on VM host."
|
|
|
|
exit 1
|
2020-12-02 11:09:08 -08:00
|
|
|
fi
|
2020-12-11 04:26:07 -08:00
|
|
|
# Enable KVM access for nixbld users
|
|
|
|
chmod o+rw /dev/kvm
|
2020-12-02 11:09:08 -08:00
|
|
|
fi
|
|
|
|
|
|
|
|
echo "$NIX_PATH ($(nix eval --raw nixpkgs.lib.version))"
|
|
|
|
|
2021-12-07 19:07:33 -08:00
|
|
|
"${BASH_SOURCE[0]%/*}/../run-tests.sh" --ci --scenario $scenario
|