Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions step.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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} \
Expand Down Expand Up @@ -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} \
Expand Down
7 changes: 7 additions & 0 deletions step.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading