File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -73,6 +73,10 @@ for the [Swift Algorithms](https://github.com/skiptools/swift-algorithms) packag
73
73
android-emulator-options:
74
74
description: 'Options to pass to the Android emulator'
75
75
default: '-no-window -gpu swiftshader_indirect -no-snapshot -noaudio -no-boot-anim'
76
+ android-emulator-arch:
77
+ description: 'Architecture for the Android emulator (x86_64 or arm64-v8)'
78
+ required: true
79
+ default: 'x86_64'
76
80
android-emulator-boot-timeout:
77
81
description: 'Emulator boot timeout in seconds'
78
82
default: 600
Original file line number Diff line number Diff line change @@ -24,6 +24,11 @@ inputs:
24
24
description : ' Options to pass to the Android emulator'
25
25
required : true
26
26
default : ' -no-window -gpu swiftshader_indirect -no-snapshot -noaudio -no-boot-anim'
27
+ android-emulator-arch :
28
+ description : ' Architecture for the Android emulator (x86_64 or arm64-v8)'
29
+ required : true
30
+ # TODO: if macos-13: x86_64, macos-15: arm64-v8
31
+ default : ' x86_64'
27
32
android-emulator-boot-timeout :
28
33
description : ' Emulator boot timeout in seconds'
29
34
required : true
57
62
api-level : ${{ inputs.android-api-level }}
58
63
emulator-boot-timeout : ${{ inputs.android-emulator-boot-timeout }}
59
64
emulator-options : ${{ inputs.android-emulator-options }}
60
- # arch: x86_64
65
+ arch : ${{ inputs.android-emulator-arch }}
61
66
script : skip android test --package-path ${{ inputs.package-path }} --swift-version ${{ inputs.swift-version }} ${{ inputs.swift-build-flags }} ${{ inputs.swift-test-flags }}
62
67
You can’t perform that action at this time.
0 commit comments