blob: d2084aec4d39b03d4e9ad972236e84f4dbb65a03 [file] [log] [blame]
Sergiusz Bazanski1663e0e2019-07-21 16:25:07 +02001#!/usr/bin/env bash
2
3set -e -o pipefail
4
5if [ -z "$hscloud_root" ]; then
6 echo 2>&1 "Please first source env.sh"
7 exit 1
8fi
9
10cd "${hscloud_root}"
11
12bazel build //cluster/tools/...
13
14if [ ! -e /nix ] ; then
15 echo "WARNING: No Nix installation detected. nix-dependent tools (nixops) will not be built or available."
16else
17 bazel build \
18 //cluster/tools:nixops
19fi