File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -41,8 +41,40 @@ For an example of a workflow in action, see a run history
41
41
for the [ Swift Algorithms] ( https://github.com/skiptools/swift-algorithms ) package at:
42
42
[ https://github.com/skiptools/swift-algorithms/actions ] ( https://github.com/skiptools/swift-algorithms/actions )
43
43
44
+ ## Configuration Options
44
45
45
46
47
+ ```
48
+ swift-version:
49
+ description: 'The version of the Swift toolchain to use'
50
+ required: true
51
+ default: '5.10.1'
52
+ package-path:
53
+ description: 'The folder where the swift package is checked out'
54
+ required: true
55
+ default: '.'
56
+ swift-build-flags:
57
+ description: 'Additional flags to pass to the swift build command'
58
+ required: true
59
+ default: ''
60
+ android-emulator-options:
61
+ description: 'Options to pass to the Android emulator'
62
+ required: true
63
+ default: '-no-window -gpu swiftshader_indirect -no-snapshot -noaudio -no-boot-anim'
64
+ android-emulator-boot-timeout:
65
+ description: 'Emulator boot timeout in seconds'
66
+ required: true
67
+ default: 600
68
+ run-tests:
69
+ description: 'Whether to run the tests or just the build'
70
+ required: true
71
+ default: 'true'
72
+ android-api-level:
73
+ description: 'The API level of the Android emulator to run against'
74
+ required: true
75
+ default: 24
76
+ ```
77
+
46
78
## Releasing
47
79
48
80
To create a new release, make a new tag (like 1.0.0),
You can’t perform that action at this time.
0 commit comments