Ray Milkey | 2c9ed83 | 2018-08-07 10:45:52 -0700 | [diff] [blame] | 1 | #!/bin/bash -ex |
| 2 | |
| 3 | # exit on errors |
| 4 | set -eu -o pipefail |
| 5 | |
| 6 | ONOS_ROOT=`pwd` |
| 7 | . tools/build/envDefaults |
| 8 | |
Ray Milkey | 2c9ed83 | 2018-08-07 10:45:52 -0700 | [diff] [blame] | 9 | PATH=$PATH:/home/jenkins/bin |
| 10 | |
Ray Milkey | bba274f | 2018-08-08 11:14:51 -0700 | [diff] [blame] | 11 | bazel build onos |
Ray Milkey | 8ea87db | 2018-09-05 11:31:11 -0700 | [diff] [blame] | 12 | bazel query "tests(//...)" | SHLVL=1 xargs bazel test --test_summary=terse --test_output=errors |
Ray Milkey | cd130d6 | 2018-08-16 14:59:31 -0700 | [diff] [blame] | 13 | bazel run //:buildifier_check |