Don't require bazel to be installed

We've got tools/bazel.  The indirection doesn't help and requires the
server to have more things setup correctly.

Change-Id: I36d0d7ce1cd181021b83a9c0826c3052c0794f1a
diff --git a/tools/ci/run-tests.sh b/tools/ci/run-tests.sh
index 918377c..fd92ea3 100755
--- a/tools/ci/run-tests.sh
+++ b/tools/ci/run-tests.sh
@@ -14,23 +14,23 @@
 
 # Include --config=eigen to enable Eigen assertions so that we catch potential
 # bugs with Eigen.
-bazel --output_base=../k8_output_base test \
+tools/bazel --output_base=../k8_output_base test \
     ${COMMON} \
     --cpu=k8 \
     --config=eigen \
     ${TARGETS}
 
-bazel --output_base=../roborio_output_base build \
+tools/bazel --output_base=../roborio_output_base build \
     ${COMMON} \
     --cpu=roborio \
     ${TARGETS}
 
-bazel --output_base=../armhf-debian_output_base build \
+tools/bazel --output_base=../armhf-debian_output_base build \
     ${COMMON} \
     --cpu=armhf-debian \
     ${TARGETS}
 
-bazel --output_base=../cortex-m4f_output_base build \
+tools/bazel --output_base=../cortex-m4f_output_base build \
     ${COMMON} \
     --cpu=cortex-m4f \
     ${M4F_TARGETS}