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"