Skip to content

Commit 41ee580

Browse files
authored
Add App Check to the GHA logic (#691)
* Add App Check to the GHA logic * Add App Check secrets * Update guids.json * Update android_dependencies.cmake * Update BuiltInProviderWrapper.cs * Update readme.md
1 parent 3e85862 commit 41ee580

19 files changed

+63
-18
lines changed

.github/workflows/build_android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
type: string
2121
apis:
2222
description: 'CSV of apis to build and test'
23-
default: 'analytics,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'
23+
default: 'analytics,app_check,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'
2424
required: true
2525
type: string
2626
unity_platform_name:

.github/workflows/build_ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
type: string
2121
apis:
2222
description: 'CSV of apis to build and test'
23-
default: 'analytics,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'
23+
default: 'analytics,app_check,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'
2424
required: true
2525
type: string
2626
unity_platform_name:

.github/workflows/build_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
type: string
2121
apis:
2222
description: 'CSV of apis to build and test'
23-
default: 'analytics,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'
23+
default: 'analytics,app_check,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'
2424
required: true
2525
type: string
2626
unity_platform_name:

.github/workflows/build_macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
type: string
2121
apis:
2222
description: 'CSV of apis to build and test'
23-
default: 'analytics,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'
23+
default: 'analytics,app_check,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'
2424
required: true
2525
type: string
2626
unity_platform_name:

.github/workflows/build_starter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ on:
2828
required: true
2929
apis:
3030
description: 'CSV of apis to build and test'
31-
default: 'analytics,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'
31+
default: 'analytics,app_check,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'
3232
required: true
3333
# Additional CMake flags to use
3434
additional_cmake_flags:
@@ -102,7 +102,7 @@ jobs:
102102
echo "platform='Android,iOS,tvOS,Windows,macOS,Linux,Playmode'" >> $GITHUB_OUTPUT
103103
echo "release_label=nightly-$(date "+%Y%m%d-%H%M%S")" >> $GITHUB_OUTPUT
104104
echo "release_version=NoVersion" >> $GITHUB_OUTPUT
105-
echo "apis='analytics,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'" >> $GITHUB_OUTPUT
105+
echo "apis='analytics,app_check,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'" >> $GITHUB_OUTPUT
106106
echo "unity_version=2020" >> $GITHUB_OUTPUT
107107
echo "should_trigger_package=true" >> $GITHUB_OUTPUT
108108
echo "firebase_cpp_sdk_version=" >> $GITHUB_OUTPUT

.github/workflows/build_tvos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
type: string
2121
apis:
2222
description: 'CSV of apis to build and test'
23-
default: 'analytics,auth,crashlytics,database,firestore,functions,installations,messaging,remote_config,storage'
23+
default: 'analytics,app_check,auth,crashlytics,database,firestore,functions,installations,messaging,remote_config,storage'
2424
required: true
2525
type: string
2626
unity_platform_name:
@@ -47,7 +47,7 @@ on:
4747
type: string
4848
apis:
4949
description: 'CSV of apis to build and test'
50-
default: 'analytics,auth,crashlytics,database,firestore,functions,installations,messaging,remote_config,storage'
50+
default: 'analytics,app_check,auth,crashlytics,database,firestore,functions,installations,messaging,remote_config,storage'
5151
required: true
5252
type: string
5353
unity_platform_name:

.github/workflows/build_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
type: string
2121
apis:
2222
description: 'CSV of apis to build and test'
23-
default: 'analytics,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'
23+
default: 'analytics,app_check,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'
2424
required: true
2525
type: string
2626
unity_platform_name:

.github/workflows/generate_swig.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
type: string
1717
apis:
1818
description: 'CSV of apis to build and test'
19-
default: 'analytics,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'
19+
default: 'analytics,app_check,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'
2020
required: true
2121
type: string
2222
# Additional CMake flags to use

.github/workflows/integration_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
required: true
1919
apis:
2020
description: 'CSV of apis to build and test'
21-
default: 'analytics,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'
21+
default: 'analytics,app_check,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'
2222
required: true
2323
mobile_test_on:
2424
description: 'Run mobile tests on real and/or virtual devices? (value: real, virtual. separated by commas)'

.github/workflows/package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ on:
3333
type: string
3434
apis:
3535
description: 'CSV of apis to build and test'
36-
default: 'analytics,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'
36+
default: 'analytics,app_check,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'
3737
required: true
3838
type: string
3939

4040

4141
env:
4242
# Use SHA256 for hashing files.
4343
hashCommand: "sha256sum"
44-
default_apis: 'analytics,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'
44+
default_apis: 'analytics,app_check,auth,crashlytics,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'
4545

4646
jobs:
4747
package_sdks:

0 commit comments

Comments
 (0)