Skip to content

Commit 3227a81

Browse files
Merge branch 'dev' into feature/ak-switch-ios-device
2 parents 9f53376 + 10ba93f commit 3227a81

File tree

12 files changed

+78
-11
lines changed

12 files changed

+78
-11
lines changed

.github/workflows/cpp-packaging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ jobs:
664664
target_platform: iOS
665665
fail-fast: false
666666
env:
667-
apis: admob,analytics,auth,database,dynamic_links,firestore,functions,instance_id,messaging,remote_config,storage
667+
apis: admob,analytics,auth,database,dynamic_links,firestore,functions,installations,instance_id,messaging,remote_config,storage
668668
android_device: flame
669669
android_api: 29
670670
ios_device: iphone8

.github/workflows/integration_tests.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,20 @@ jobs:
135135
run: |
136136
choco install openssl -r
137137
138+
- name: Install OpenSSL (MacOS)
139+
if: matrix.target_platform == 'Desktop' &&
140+
matrix.ssl_variant == 'openssl' &&
141+
startsWith(matrix.os, 'macos')
142+
run: |
143+
brew install openssl
144+
145+
- name: Install OpenSSL (Linux)
146+
if: matrix.target_platform == 'Desktop' &&
147+
matrix.ssl_variant == 'openssl' &&
148+
startsWith(matrix.os, 'ubuntu')
149+
run: |
150+
sudo apt install openssl
151+
138152
- name: Build integration tests
139153
shell: bash
140154
run: |

admob/integration_test/src/integration_test.cc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -510,6 +510,10 @@ static void* DeleteBannerViewOnSignal(void* args) {
510510

511511
TEST_F(FirebaseAdMobTest, TestBannerViewMultithreadDeletion) {
512512
SKIP_TEST_ON_DESKTOP;
513+
SKIP_TEST_ON_MOBILE; // TODO(b/172832275): This test is temporarily
514+
// disabled on all platforms due to flakiness
515+
// on Android. Once it's fixed, this test should
516+
// be re-enabled on mobile.
513517

514518
static const int kBannerWidth = 320;
515519
static const int kBannerHeight = 50;

external/vcpkg

Submodule vcpkg updated 3753 files
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
openssl
2+
protobuf
3+
zlib
4+
--triplet
5+
x64-linux
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
openssl
2+
protobuf
3+
zlib
4+
--triplet
5+
x64-osx
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
openssl
2+
protobuf
3+
zlib
4+
--triplet
5+
x64-windows-static-md
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
openssl
2+
protobuf
3+
zlib
4+
--triplet
5+
x64-windows-static
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
openssl
2+
protobuf
3+
zlib
4+
--triplet
5+
x86-linux
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
openssl
2+
protobuf
3+
zlib
4+
--triplet
5+
x86-windows-static-md

0 commit comments

Comments
 (0)