feat(wire): migrate from protobuf -> wire (#4401)

Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
James Rich 2026-02-03 18:01:12 -06:00 committed by GitHub
parent 9dbc8b7fbf
commit 25657e8f8f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
239 changed files with 7149 additions and 6144 deletions

View file

@ -32,35 +32,15 @@ jobs:
- '**/src/**'
- '.github/workflows/**'
lint:
android-check:
needs: check-changes
if: needs.check-changes.outputs.code_changed == 'true'
uses: ./.github/workflows/reusable-lint.yml
secrets: inherit
build:
needs:
- check-changes
- lint
if: ${{ needs.check-changes.outputs.code_changed == 'true' && !cancelled() && !failure() }}
uses: ./.github/workflows/reusable-android-build.yml
uses: ./.github/workflows/reusable-check.yml
with:
test_flavors: 'google'
api_levels: '[35]' # Only test latest API on PRs for speed
flavors: '["google"]'
secrets: inherit
androidTest:
needs:
- check-changes
- lint
if: ${{ needs.check-changes.outputs.code_changed == 'true' && !cancelled() && !failure() }}
uses: ./.github/workflows/reusable-android-test.yml
with:
api_levels: '[35]' # Run only on API 35 for PRs
test_flavors: 'google' # Run only Google flavor for PRs (faster)
num_shards: 1 # Run tests in parallel across 1 emulator
secrets: inherit
# This job handles the case when no code changes are detected (docs-only PRs)
skip-notice:
needs: check-changes
if: needs.check-changes.outputs.code_changed != 'true'
@ -74,34 +54,19 @@ jobs:
runs-on: ubuntu-latest
needs:
- check-changes
- lint
- build
- androidTest
- android-check
if: always()
steps:
- name: Check Workflow Status
run: |
# If no code changed, all jobs are expected to be skipped - that's success
if [[ "${{ needs.check-changes.outputs.code_changed }}" != "true" ]]; then
echo "No code changes - CI jobs skipped as expected"
exit 0
fi
# Code changed - check that all jobs succeeded
check_result() {
local job_name=$1
local result=$2
if [[ "$result" == "failure" ]]; then
echo "::error::Job '$job_name' failed"
exit 1
elif [[ "$result" == "cancelled" ]]; then
echo "::error::Job '$job_name' was cancelled"
exit 1
fi
}
check_result "lint" "${{ needs.lint.result }}"
check_result "build" "${{ needs.build.result }}"
check_result "androidTest" "${{ needs.androidTest.result }}"
if [[ "${{ needs.android-check.result }}" == "failure" || "${{ needs.android-check.result }}" == "cancelled" ]]; then
echo "::error::Android Check failed"
exit 1
fi
echo "All jobs passed successfully"