Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add GitHub Continuous Integration #315

Open
wants to merge 22 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
65e134c
Added in GitHub Continuous Integration
penguin359 Jan 3, 2022
df2fdfb
Enable Git submodules on CI
penguin359 Jan 3, 2022
42bda35
Gradle needs all commit history to build
penguin359 Jan 3, 2022
bcd3b7b
Enabled stacktraces of failed builds
penguin359 Jan 3, 2022
d4c027c
Use real Google Maps API key with Github secrets
penguin359 Jan 3, 2022
ac190f1
Build/test release and debug configurations and enable linter
penguin359 Jan 3, 2022
7c0faec
Enable job matrix for testing on several API levels
penguin359 Jan 3, 2022
459df5e
Broke it up into multiple, dependent jobs
penguin359 Jan 3, 2022
f7737f5
Added CI badge to README
penguin359 Jan 3, 2022
98c7b56
Fixes
penguin359 Jan 3, 2022
a87f955
Save test reports on failure and upload APK on success
penguin359 Jan 3, 2022
9819158
Added Android emulator snapshotting to improve start-up performance
penguin359 Jan 3, 2022
61c771a
Exclude build combinations that won't start in emulator
penguin359 Jan 3, 2022
2230a21
API level 30 and above only supported with 64-bit
penguin359 Jan 3, 2022
6951ebc
Only upload test reports on failure
penguin359 Jan 3, 2022
68d42fc
Save logcat logs from failed test runs
penguin359 Jan 30, 2022
e9acefd
Enable SD card needed for profile tests
penguin359 Jan 30, 2022
b85d281
Make the README CI badge only show the status of pushes to master
penguin359 Feb 1, 2022
f6327e8
Bumped several GitHub Actions to newer releases
penguin359 Aug 4, 2024
d709423
Fixed exclude matcher for default target on API 31
penguin359 Aug 6, 2024
b554f97
Attempt to bump Java version for Emulator
penguin359 Aug 4, 2024
57a544d
Switched to Linux for better emulator performance
penguin359 Aug 5, 2024
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
Prev Previous commit
Next Next commit
Enable Git submodules on CI
  • Loading branch information
penguin359 committed Aug 4, 2024
commit df2fdfb16eb845ee705a65243ed8092ef690b1e2
2 changes: 2 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: set up JDK 11
uses: actions/setup-java@v2
with:
Expand Down