Skip to content

Commit

Permalink
Don't require bazel to be installed
Browse files Browse the repository at this point in the history
We've got tools/bazel.  The indirection doesn't help and requires the
server to have more things setup correctly.

Change-Id: I36d0d7ce1cd181021b83a9c0826c3052c0794f1a
  • Loading branch information
AustinSchuh committed Nov 28, 2020
1 parent 39abef6 commit 4086152
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/ci/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@ readonly COMMON='-c opt --stamp=no --curses=no --color=no --symlink_prefix=/'

# 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}

0 comments on commit 4086152

Please sign in to comment.