Skip to content
Merged
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
1 change: 1 addition & 0 deletions .github/workflows/copy-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ name: Duplicates main to old master branch
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the main branch
on:
workflow_dispatch:
push:
branches: [ main ]

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/firebase_test_lab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Runs Macro Benchmarks on Firebase Test Lab
on:
push:
branches: [ macrobenchmark, main ]
pull_request:
branches: [ main ]
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -95,4 +97,3 @@ jobs:
--environment-variables clearPackageData=true,additionalTestOutputDir=/sdcard/Download,no-isolated-storage=true,androidx.benchmark.enabledRules=BaselineProfile \
--num-uniform-shards 2 \
--timeout 30m

3 changes: 2 additions & 1 deletion .github/workflows/generate-bp.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Generate Baseline Profiles

on:
# We ONLY want to build baseline profiles for pushes on main.
# Do not trigger on "pull_request" because it takes too much time and resources.
push:
branches: [ main ]
workflow_dispatch:
Expand Down Expand Up @@ -77,4 +79,3 @@ jobs:
with:
name: "Production App"
path: MacrobenchmarkSample/app/build/outputs/apk/release/*.apk

1 change: 1 addition & 0 deletions .github/workflows/macrobenchmark.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Builds Macrobenchmarks

on:
workflow_dispatch:
pull_request:
push:
branches: [ macrobenchmark, main ]
Expand Down