From ad2adacb4a87c2b63e83ceedcbd1b76bcfc8b30e Mon Sep 17 00:00:00 2001 From: finalerock44 <77282157+finalerock44@users.noreply.github.com> Date: Mon, 14 Sep 2026 16:11:33 +0100 Subject: [PATCH] feat: add render_engine input Passes --render-engine through to the CLI (Android only, lavapipe or swiftshader). Empty is omitted, leaving the choice to DeviceCloud, which picks swiftshader for apps shipping the Flutter engine. --- step.sh | 3 +++ step.yml | 7 +++++++ 2 files changed, 10 insertions(+) diff --git a/step.sh b/step.sh index 758885b..44dc958 100644 --- a/step.sh +++ b/step.sh @@ -84,6 +84,7 @@ echo "orientation: $orientation" echo "report: $report" echo "retry: $retry" echo "runner_type: $runner_type" +echo "render_engine: $render_engine" echo "show_crosshairs: $show_crosshairs" echo "workspace: $workspace" echo "app_url: $app_url" @@ -131,6 +132,7 @@ ${orientation:+--orientation \"$orientation\"} \ ${report:+--report \"$report\"} \ ${retry:+--retry \"$retry\"} \ ${runner_type:+--runner-type \"$runner_type\"} \ +${render_engine:+--render-engine \"$render_engine\"} \ ${is_show_crosshairs:+--show-crosshairs} \ ${app_url:+--app-url \"$app_url\"} \ ${is_disable_animations:+--disable-animations} \ @@ -181,6 +183,7 @@ ${orientation:+--orientation "$orientation"} \ ${report:+--report "$report"} \ ${retry:+--retry "$retry"} \ ${runner_type:+--runner-type "$runner_type"} \ +${render_engine:+--render-engine "$render_engine"} \ ${is_show_crosshairs:+--show-crosshairs} \ ${app_url:+--app-url "$app_url"} \ ${is_disable_animations:+--disable-animations} \ diff --git a/step.yml b/step.yml index 6fbd8fd..815cae7 100644 --- a/step.yml +++ b/step.yml @@ -257,6 +257,13 @@ inputs: is_expand: true is_required: false + - render_engine: "" + opts: + title: "Render Engine" + summary: "[Android only] Software renderer the emulator boots with (lavapipe or swiftshader). Leave empty to let DeviceCloud choose: lavapipe by default, swiftshader for apps shipping the Flutter engine." + is_expand: true + is_required: false + - report: "" opts: title: "Report Format"