-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rely on AGP to auto-install SDK components.
This was probably only ever needed for old AGP versions, but now that all the samples are using something new enough, we apparently don't need it.
- Loading branch information
Showing
2 changed files
with
4 additions
and
23 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,15 +24,14 @@ jobs: | |
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.x | ||
- name: setup env | ||
run: | ||
source .ci_tools/setup_env.sh | ||
# Needs to be after "setup env" because we use the clang-format shipped with the NDK. | ||
- uses: pre-commit/[email protected] | ||
|
||
- name: build samples | ||
run: | | ||
export SAMPLE_CI_RESULT=0 | ||
source .ci_tools/build_samples.sh | ||
source .ci_tools/run_samples.sh | ||
eval "[[ $SAMPLE_CI_RESULT == 0 ]]" | ||
# Needs to be run last because we use the clang-format shipped with the NDK. | ||
- uses: pre-commit/[email protected] | ||
|