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
5 changes: 3 additions & 2 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
- improvement/*
- release/*
- technical/*
- 'dependabot/**'

permissions:
# Only need read access to repository contents
Expand Down Expand Up @@ -166,13 +167,13 @@ jobs:
avd-name: test-avd
force-avd-creation: true
disable-animations: true
emulator-options: -no-window -no-audio -no-boot-anim -accel auto -memory 2048
emulator-options: -no-snapshot -no-window -no-audio -no-boot-anim -accel on -memory 4096
script: |
# To catch only crashes in background
adb logcat -b crash *:E > crash_log.txt 2>&1 &
LOGCAT_PID=$!

./gradlew clean test -Dserver="${{ secrets.OC_SERVER_URL }}" -Dusername="${{ secrets.OC_SERVER_USERNAME_TEST }}" -Dpassword="${{ secrets.OC_SERVER_PASSWORD_TEST }}" -Dcommit="$(echo $GITHUB_SHA | cut -c1-7)"
./gradlew --no-daemon clean test -Dserver="${{ secrets.OC_SERVER_URL }}" -Dusername="${{ secrets.OC_SERVER_USERNAME_TEST }}" -Dpassword="${{ secrets.OC_SERVER_PASSWORD_TEST }}" -Dcommit="$(echo $GITHUB_SHA | cut -c1-7)"

# Kill logcat to serve crash_log.txt
kill $LOGCAT_PID || true
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ ownCloud admins and users.
* Enhancement - Edit a space: [#4607](https://github.com/owncloud/android/issues/4607)
* Enhancement - Update test in GitHub Actions: [#4663](https://github.com/owncloud/android/pull/4663)
* Enhancement - New workflow to generate a build from "latest" tag on demand: [#4681](https://github.com/owncloud/android/pull/4681)
* Enhancement - Make Update test more robust: [#4690](https://github.com/owncloud/android/pull/4690)

## Details

Expand Down Expand Up @@ -144,6 +145,13 @@ ownCloud admins and users.

https://github.com/owncloud/android/pull/4681

* Enhancement - Make Update test more robust: [#4690](https://github.com/owncloud/android/pull/4690)

Improvements have been added to the update test workflow in order to make the
emulator execution more performant. Also, added a trigger for dependabot PRs.

https://github.com/owncloud/android/pull/4690

# Changelog for ownCloud Android Client [4.6.2] (2025-08-13)

The following sections list the changes in ownCloud Android Client 4.6.2 relevant to
Expand Down
5 changes: 5 additions & 0 deletions changelog/unreleased/4690
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Enhancement: Make Update test more robust

Improvements have been added to the update test workflow in order to make the emulator execution more performant. Also, added a trigger for dependabot PRs.

https://github.com/owncloud/android/pull/4690
Loading