Skip to content

Commit

Permalink
[andr][ci] fix android runners (#227)
Browse files Browse the repository at this point in the history
* Superfluous change to trigger the ci breakage

* try [email protected]
  • Loading branch information
murki authored Feb 17, 2025
1 parent 037e8d8 commit 2e1ea31
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
- name: Create AVD and generate snapshot for caching
if: steps.avd-cache.outputs.cache-hit != 'true'
timeout-minutes: 30
uses: reactivecircus/android-emulator-runner@f0d1ed2dcad93c7479e8b2f2226c83af54494915 # pin@v2.32
uses: reactivecircus/android-emulator-runner@62dbb605bba737720e10b196cb4220d374026a6d # pin@v2.33
with:
channel: stable
force-avd-creation: false
Expand All @@ -139,7 +139,7 @@ jobs:
working-directory: ./platform/jvm
run: ./gradlew replay:checkLicense common:checkLicense # capture:checkLicense doesn't work at the moment
- name: Instrumentation Tests
uses: reactivecircus/android-emulator-runner@f0d1ed2dcad93c7479e8b2f2226c83af54494915 # pin@v2.32
uses: reactivecircus/android-emulator-runner@62dbb605bba737720e10b196cb4220d374026a6d # pin@v2.33
with:
channel: stable
force-avd-creation: false
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
- name: Create AVD and generate snapshot for caching
if: steps.avd-cache.outputs.cache-hit != 'true'
timeout-minutes: 30
uses: reactivecircus/android-emulator-runner@d94c3fbe4fe6a29e4a5ba47c12fb47677c73656b # pin@v2
uses: reactivecircus/android-emulator-runner@62dbb605bba737720e10b196cb4220d374026a6d # pin@v2.33
with:
channel: stable
api-level: ${{ matrix.api-level }}
Expand All @@ -199,7 +199,7 @@ jobs:
emulator-options: -no-window -accel on -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
script: echo "Generated AVD snapshot for caching."
- name: run tests
uses: reactivecircus/android-emulator-runner@v2
uses: reactivecircus/android-emulator-runner@62dbb605bba737720e10b196cb4220d374026a6d # [email protected]
timeout-minutes: 15
with:
force-avd-creation: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,17 @@ internal sealed class CaptureDispatchers private constructor(
/**
* [ExecutorService] A common background single thread worker that will be used to process events sequentially
*/
object CommonBackground : CaptureDispatchers("background-thread-worker")
data object CommonBackground : CaptureDispatchers("background-thread-worker")

/**
* [ExecutorService] to be used for networking capture
*/
object Network : CaptureDispatchers("network.okhttp")
data object Network : CaptureDispatchers("network.okhttp")

/**
* [ExecutorService] to be used for Session-Replay
*/
object SessionReplay : CaptureDispatchers("session-replay")
data object SessionReplay : CaptureDispatchers("session-replay")

private fun buildExecutorService(threadName: String): ExecutorService =
Executors.newSingleThreadExecutor {
Expand Down

0 comments on commit 2e1ea31

Please sign in to comment.