Skip to content
Merged
1 change: 0 additions & 1 deletion .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ build --incompatible_objc_compile_info_migration
build --features=-per_object_debug_info
# Suppress deprecated declaration warnings due to extensive transitive noise from protobuf.
build --copt -Wno-deprecated-declarations
build --@envoy//bazel:http3=False

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we add this to release-common so that our release builds don't yet include it?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

will this mean we have to exempt quic tests from the release build somehow?
doable but it may make more sense to have this as a lyft-only thing, WDYT?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

talked offline. Happy to not compile h3 in our private build.


# Default flags for builds targeting iOS
# Manual stamping is necessary in order to get versioning information in the iOS
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/android_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
javatestsmac:
name: java_tests_mac
runs-on: macos-11
timeout-minutes: 90
timeout-minutes: 120
steps:
- uses: actions/checkout@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
iosbuild:
name: ios_build
runs-on: macos-11
timeout-minutes: 75
timeout-minutes: 120
steps:
- uses: actions/checkout@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
swifttests:
name: swift_tests
runs-on: macos-11
timeout-minutes: 90
timeout-minutes: 120
steps:
- uses: actions/checkout@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
sizecurrent:
name: size_current
runs-on: ubuntu-18.04
timeout-minutes: 90
timeout-minutes: 120
container:
image: envoyproxy/envoy-build-ubuntu:b51ac7a0f2cb5dd729984a379a301ce029ac765d
env:
Expand Down
2 changes: 1 addition & 1 deletion ci/test_size_regression.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Checks the absolute size and the relative size increase of a file.

MAX_SIZE=6600000 # 6.6MB
MAX_SIZE=7200000 # 7.2MB
MAX_PERC=2.0

if [ `uname` == "Darwin" ]
Expand Down