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 | cd130d6 | 2018-08-16 14:59:31 -0700 | [diff] [blame] | 11 | bazel run //:buildifier_check |
Ray Milkey | fc11c8f | 2019-01-23 09:10:56 -0800 | [diff] [blame^] | 12 | bazel build onos |
| 13 | bazel query "tests(//...)" | grep -v "\-coverage" | SHLVL=1 xargs bazel test --test_summary=terse --test_output=errors |
| 14 | |