-
-
Notifications
You must be signed in to change notification settings - Fork 318
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
564 changed files
with
15,280 additions
and
3,901 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1 +1 @@ | ||
7.2.1 | ||
7.3.1 |
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
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
25 changes: 25 additions & 0 deletions
25
.github/actions/android-build-and-upload-render-test/action.yml
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Build and Upload APKs | ||
description: Build the APK and Android test APK for a given flavor, and upload them as artifacts | ||
inputs: | ||
flavor: | ||
description: 'The build flavor (e.g., opengl, vulkan)' | ||
required: true | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Build APK and Android Test APK for ${{ inputs.flavor }} | ||
shell: bash | ||
run: | | ||
./gradlew assemble${{ inputs.flavor }} assemble${{ inputs.flavor }}AndroidTest | ||
cp app/build/outputs/apk/${{ inputs.flavor }}/release/app-${{ inputs.flavor }}-release.apk RenderTestsApp-${{ inputs.flavor }}.apk | ||
cp app/build/outputs/apk/androidTest/${{ inputs.flavor }}/release/app-${{ inputs.flavor }}-release-androidTest.apk RenderTests-${{ inputs.flavor }}.apk | ||
working-directory: ./render-test/android | ||
|
||
- name: Upload APK files for ${{ inputs.flavor }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: android-render-tests-${{ inputs.flavor }} | ||
if-no-files-found: error | ||
path: | | ||
./render-test/android/RenderTestsApp-${{ inputs.flavor }}.apk | ||
./render-test/android/RenderTests-${{ inputs.flavor }}.apk |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.