summaryrefslogtreecommitdiff
path: root/kokoro/ubuntu/build.sh
blob: ad8122b1bdbd5b67eaab6ff0f5090263f4b9e40f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

# Install the latest version of Bazel.
use_bazel.sh latest

# Verify/query CMake
echo PATH=$PATH
ls -l `which cmake`
cmake --version

# Log the bazel path and version.
which bazel
bazel version

cd $(dirname $0)/../..
bazel test --test_output=errors :all
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback