Skip to content

Commit d7b53dd

Browse files
committed
Merge branch 'main' into release/v2
* main: Prepare for release 2.26.0. Bump @actions/core from 1.6.0 to 1.9.1 (#262) Add action types (#257) Update documentation (#255)
2 parents b390b0e + 6fd58f9 commit d7b53dd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+4712
-23
lines changed

.github/workflows/action-types.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Validate action typings
2+
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
8+
jobs:
9+
validate-typings:
10+
runs-on: "ubuntu-latest"
11+
steps:
12+
- uses: actions/checkout@v3
13+
- uses: krzema12/github-actions-typing@v0

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## v2.26.0
4+
5+
* Support [github-actions-typing](https://github.com/krzema12/github-actions-typing). - [#257](https://github.com/ReactiveCircus/android-emulator-runner/pull/257) @LeoColman.
6+
37
## v2.25.0
48

59
* Auto detect hardware acceleration on Linux. - [#254](https://github.com/ReactiveCircus/android-emulator-runner/pull/254) @notbigdata.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
| `emulator-options` | Optional | See below | Command-line options used when launching the emulator (replacing all default options) - e.g. `-no-window -no-snapshot -camera-back emulated`. |
153153
| `disable-animations` | Optional | `true` | Whether to disable animations - `true` or `false`. |
154154
| `disable-spellchecker` | Optional | `false` | Whether to disable spellchecker - `true` or `false`. |
155-
| `disable-linux-hw-accel` | Optional | `true` | Whether to disable hardware acceleration on Linux machines - `true` or `false`. Note that this is true by default as Github-hosted Linux runners do not support hardware acceleration. |
155+
| `disable-linux-hw-accel` | Optional | `auto` | Whether to disable hardware acceleration on Linux machines - `true`, `false` or `auto`.|
156156
| `enable-hw-keyboard` | Optional | `false` | Whether to enable hardware keyboard - `true` or `false`. |
157157
| `emulator-build` | Optional | N/A | Build number of a specific version of the emulator binary to use e.g. `6061023` for emulator v29.3.0.0. |
158158
| `working-directory` | Optional | `./` | A custom working directory - e.g. `./android` if your root Gradle project is under the `./android` sub-directory within your repository. |

action-types.yml

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
inputs:
2+
api-level:
3+
type: integer
4+
target:
5+
type: enum
6+
allowed-values:
7+
- default
8+
- google_apis
9+
- google_apis_playstore
10+
- aosp_atd
11+
- google_atd
12+
- android-wear
13+
- android-wear-cn
14+
- android-tv
15+
- google-tv
16+
arch:
17+
type: enum
18+
allowed-values:
19+
- x86
20+
- x86_64
21+
- arm64-v8a
22+
profile:
23+
type: string
24+
cores:
25+
type: integer
26+
ram-size:
27+
type: string
28+
heap-size:
29+
type: string
30+
sdcard-path-or-size:
31+
type: string
32+
disk-size:
33+
type: string
34+
avd-name:
35+
type: string
36+
force-avd-creation:
37+
type: boolean
38+
emulator-options:
39+
type: string
40+
disable-animations:
41+
type: boolean
42+
disable-spellchecker:
43+
type: boolean
44+
disable-linux-hw-accel:
45+
type: string
46+
enable-hw-keyboard:
47+
type: boolean
48+
emulator-build:
49+
type: string
50+
working-directory:
51+
type: string
52+
ndk:
53+
type: string
54+
cmake:
55+
type: string
56+
channel:
57+
type: enum
58+
allowed-values:
59+
- stable
60+
- beta
61+
- dev
62+
- canary
63+
script:
64+
type: string

node_modules/.package-lock.json

Lines changed: 21 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/README.md

Lines changed: 24 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/core.d.ts

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/core.js

Lines changed: 26 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/core.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/oidc-utils.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)