Skip to content

Commit d3118bf

Browse files
committed
1 parent 582843e commit d3118bf

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

action.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,13 @@ inputs:
1414
required: false
1515
default: ''
1616
inputs.android-emulator-options:
17-
description: 'Additional options to pass to the Android emulator'
17+
description: 'Options to pass to the Android emulator'
1818
required: false
19-
default: ''
19+
default: '-no-window -gpu swiftshader_indirect -no-snapshot -noaudio -no-boot-anim'
20+
inputs.android-emulator-boot-timeout:
21+
description: 'Emulator boot timeout in seconds'
22+
required: false
23+
default: '600'
2024
run-tests:
2125
description: 'Whether to run the tests or just the build'
2226
required: true
@@ -44,6 +48,7 @@ runs:
4448
uses: reactivecircus/android-emulator-runner@v2
4549
with:
4650
api-level: ${{ inputs.android-api-level }}
51+
emulator-boot-timeout: ${{ inputs.android-emulator-boot-timeout }}
4752
emulator-options: ${{ inputs.android-emulator-options }}
4853
arch: x86_64
4954
script: skip android test --package-path ${{ inputs.package-path }} ${{ inputs.swift-build-flags }}

0 commit comments

Comments
 (0)