Skip to content

Commit

Permalink
ci: only run integration tests for mac CI (envoyproxy#10818)
Browse files Browse the repository at this point in the history
Risk Level: low
Testing: n/a
Docs Changes: n/a
Release Notes: n/a

Signed-off-by: Stephan Zuercher <[email protected]>
Signed-off-by: pengg <[email protected]>
  • Loading branch information
zuercher authored and penguingao committed Apr 22, 2020
1 parent 8477ecf commit f90da70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/mac_ci_steps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ BAZEL_BUILD_OPTIONS="--curses=no --show_task_finish --verbose_failures \
if [[ $# -gt 0 ]]; then
TEST_TARGETS=$*
else
TEST_TARGETS=//test/...
TEST_TARGETS=//test/integration/...
fi

if [[ "$TEST_TARGETS" == "//test/..." ]]; then
if [[ "$TEST_TARGETS" == "//test/..." || "$TEST_TARGETS" == "//test/integration/..." ]]; then
bazel build ${BAZEL_BUILD_OPTIONS} //source/exe:envoy-static
fi
bazel test ${BAZEL_BUILD_OPTIONS} ${TEST_TARGETS}

0 comments on commit f90da70

Please sign in to comment.