mirror of
https://github.com/reactivecircus/android-emulator-runner.git
synced 2026-08-31 17:49:33 +00:00
Add Baklava support (#424)
* Add `Baklava` support * Fix typo of `ubuntu-latest` to fix CI
This commit is contained in:
@@ -35,7 +35,7 @@ jobs:
|
|||||||
api-level: 34
|
api-level: 34
|
||||||
target: aosp_atd
|
target: aosp_atd
|
||||||
arch: x86_64
|
arch: x86_64
|
||||||
- os: ubuntu-lastest
|
- os: ubuntu-latest
|
||||||
api-level: 35
|
api-level: 35
|
||||||
target: google_apis
|
target: google_apis
|
||||||
arch: x86_64
|
arch: x86_64
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ exports.VALID_ARCHS = ['x86', 'x86_64', 'arm64-v8a'];
|
|||||||
exports.VALID_CHANNELS = ['stable', 'beta', 'dev', 'canary'];
|
exports.VALID_CHANNELS = ['stable', 'beta', 'dev', 'canary'];
|
||||||
exports.MIN_PORT = 5554;
|
exports.MIN_PORT = 5554;
|
||||||
exports.MAX_PORT = 5584;
|
exports.MAX_PORT = 5584;
|
||||||
exports.PREVIEW_API_LEVELS = ['Tiramisu', 'UpsideDownCake', 'VanillaIceCream'];
|
exports.PREVIEW_API_LEVELS = ['Tiramisu', 'UpsideDownCake', 'VanillaIceCream', 'Baklava'];
|
||||||
function checkApiLevel(apiLevel) {
|
function checkApiLevel(apiLevel) {
|
||||||
if (exports.PREVIEW_API_LEVELS.some((previewLevel) => apiLevel.startsWith(previewLevel)))
|
if (exports.PREVIEW_API_LEVELS.some((previewLevel) => apiLevel.startsWith(previewLevel)))
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ export const VALID_ARCHS: Array<string> = ['x86', 'x86_64', 'arm64-v8a'];
|
|||||||
export const VALID_CHANNELS: Array<string> = ['stable', 'beta', 'dev', 'canary'];
|
export const VALID_CHANNELS: Array<string> = ['stable', 'beta', 'dev', 'canary'];
|
||||||
export const MIN_PORT = 5554;
|
export const MIN_PORT = 5554;
|
||||||
export const MAX_PORT = 5584;
|
export const MAX_PORT = 5584;
|
||||||
export const PREVIEW_API_LEVELS: Array<string> = ['Tiramisu', 'UpsideDownCake', 'VanillaIceCream'];
|
export const PREVIEW_API_LEVELS: Array<string> = ['Tiramisu', 'UpsideDownCake', 'VanillaIceCream', 'Baklava'];
|
||||||
|
|
||||||
export function checkApiLevel(apiLevel: string): void {
|
export function checkApiLevel(apiLevel: string): void {
|
||||||
if (PREVIEW_API_LEVELS.some((previewLevel) => apiLevel.startsWith(previewLevel))) return;
|
if (PREVIEW_API_LEVELS.some((previewLevel) => apiLevel.startsWith(previewLevel))) return;
|
||||||
|
|||||||
Reference in New Issue
Block a user