Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/Build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ concurrency:
cancel-in-progress: true

jobs:
test_and_apk:
name: "Local tests and APKs"
test_and_aab:
name: "Local tests and AABs"
runs-on: ubuntu-latest

permissions:
Expand Down Expand Up @@ -134,13 +134,13 @@ jobs:
run: ./gradlew testDemoDebug :lint:test

- name: Build all build type and flavor permutations
run: ./gradlew :app:assemble -PminifyWithR8=false
run: ./gradlew :app:bundle -PminifyWithR8=false

- name: Upload build outputs (APKs)
- name: Upload build outputs (AABs)
uses: actions/upload-artifact@v4
with:
name: APKs
path: '**/build/outputs/apk/**/*.apk'
name: AABs
path: '**/build/outputs/bundle/**/*.aab'

- name: Upload JVM local results (XML)
if: ${{ !cancelled() }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
-Pandroid.testoptions.manageddevices.emulator.gpu="swiftshader_indirect"

- name: Build release variant including baseline profile generation
run: ./gradlew :app:assembleDemoRelease
run: ./gradlew :app:bundleDemoRelease
-Pandroid.testInstrumentationRunnerArguments.androidx.benchmark.enabledRules=BaselineProfile
-Pandroid.testoptions.manageddevices.emulator.gpu="swiftshader_indirect"
-Pandroid.experimental.testOptions.managedDevices.emulator.showKernelLogging=true
Expand All @@ -77,6 +77,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: app/build/outputs/apk/demo/release/app-demo-release.apk
asset_name: app-demo-release.apk
asset_path: app/build/outputs/bundle/demoRelease/app-demo-release.aab
asset_name: app-demo-release.aab
asset_content_type: application/vnd.android.package-archive
Loading