Open
Conversation
Contributor
There was a problem hiding this comment.
Code Review
This pull request adds support for YTS tests by introducing a new GitHub composite action and updating the Android ARM configuration. The changes in the configuration file look correct. However, the new GitHub action in .github/actions/yts_tests/action.yaml appears to have some copy-paste errors from an E2E test action. It's incorrectly configured to run E2E tests instead of YTS tests, which would cause it to fail. I've left specific comments with suggestions to fix these issues.
| --token ${GITHUB_TOKEN} \ | ||
| trigger \ | ||
| --test_type ${TEST_TYPE} \ | ||
| --targets '${{ inputs.e2e_test_targets }}' \ |
Contributor
| GITHUB_RUN_NUMBER: ${{ github.run_number }} | ||
| GITHUB_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
| GITHUB_WORKFLOW: ${{ github.workflow }} | ||
| TEST_TYPE: e2e_test |
Contributor
| description: "Test dimensions JSON string." | ||
| required: true | ||
| yts_test_targets: | ||
| description: "E2E test targets." |
Contributor
| --label author_id-${GITHUB_PR_HEAD_USER_ID:-$GITHUB_COMMIT_AUTHOR_EMAIL} \ | ||
| --dimensions '${{ inputs.test_dimensions }}' \ | ||
| --cobalt_path "${GCS_ARTIFACTS_PATH}" || { | ||
| echo "Finished running tests..." |
Contributor
There was a problem hiding this comment.
yell0wd0g
reviewed
Dec 3, 2025
.github/workflows/main.yaml
Outdated
| test_device_family=$(cat ${GITHUB_WORKSPACE}/.github/config/${{ inputs.platform }}.json | jq -rc '.test_device_family // empty') | ||
| echo "test_device_family=${test_device_family}" >> $GITHUB_OUTPUT | ||
| - name: Set YTS test targets | ||
| id: set-e2e-test-targets |
Contributor
There was a problem hiding this comment.
Shouldn't this be set-yts-test-targets ? set-e2e-test-targets is an id in l.180 (no idea how this works tho :)
6e5d325 to
e5f6892
Compare
Issue: 454941148
Issue: 454941148
ba05872 to
cf09978
Compare
Issue: 454941148
cf09978 to
c69cb91
Compare
…yts_tests Issue: 454941148
… into feature/yts_tests Issue: 454941148
1289f3a to
9482847
Compare
9482847 to
102fa36
Compare
05ca899 to
9bca71e
Compare
b06b7d4 to
3b23a8d
Compare
3b23a8d to
44ed002
Compare
e2ea908 to
2a76b87
Compare
2a76b87 to
cb019c3
Compare
2dc2a50 to
4268187
Compare
4268187 to
081512e
Compare
332b587 to
a16764e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Issue: 454941148