Skip to content

Commit

Permalink
mobile/ci: Fix/cleanup yaml config (envoyproxy#27720)
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Northey <[email protected]>
  • Loading branch information
phlax authored May 31, 2023
1 parent de2ef46 commit 2679781
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/mobile-compile_time_options.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ jobs:
run: |
# Envoy Mobile build which verifies that the build configuration where HTTP/3 is enabled and
# HTTP Datagrams are disabled works.
cd mobile && ./bazelw test \
cd mobile
./bazelw test \
$([ -z $GITHUB_TOKEN ] || echo "--config=remote-ci-linux") \
--define=signal_trace=disabled \
--define=admin_html=enabled \
Expand All @@ -43,9 +44,9 @@ jobs:
--define=google_grpc=disabled \
--@envoy//bazel:http3=False \
--@com_envoyproxy_protoc_gen_validate//bazel:template-flavor= \
//test/cc/... \
# Envoy Mobile build which verifies that the build configuration where YAML is disabled.
&& ./bazelw test \
//test/cc/...
# Envoy Mobile build which verifies that the build configuration where YAML is disabled.
./bazelw test \
$([ -z $GITHUB_TOKEN ] || echo "--config=remote-ci-macos") \
--config=ci \
--fat_apk_cpu=x86_64 \
Expand All @@ -57,7 +58,7 @@ jobs:
--@com_envoyproxy_protoc_gen_validate//bazel:template-flavor= \
//test/java/integration:android_engine_socket_tag_test \
//test/java/integration:android_engine_start_test \
//test/java/io/envoyproxy/envoymobile/utilities:certificate_verification_tests
//test/java/io/envoyproxy/envoymobile/utilities:certificate_verification_tests \
//test/common/integration:client_integration_test
swift_build:
if: ${{ needs.env.outputs.mobile_compile_time_options == 'true' }}
Expand Down

0 comments on commit 2679781

Please sign in to comment.