Skip to content
Merged
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
8 changes: 6 additions & 2 deletions .github/workflows/manual_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
required: true
machine_type:
description: "GCE machine type: https://cloud.google.com/compute/docs/machine-types"
default: "n1-standard-4"
default: "n1-standard-1"
required: true
disk_size:
description: VM disk size.
Expand All @@ -29,6 +29,10 @@ on:
description: "Whether the GitHub actions have already been installed at `/actions-runner`."
default: "false"
required: true
vm_name_prefix:
description: Prefix of the name of created VM, final name is ${prefix}-${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}
default: "gce-gh-runner"
required: true

jobs:
create-runner:
Expand All @@ -51,7 +55,7 @@ jobs:
no_external_address: ${{ inputs.no_external_address }}
actions_preinstalled: ${{ inputs.actions_preinstalled }}
shutdown_timeout: ${{ inputs.shutdown_timeout }}

vm_name_prefix: ${{ inputs.vm_name_prefix }}
test:
needs: create-runner
runs-on: ${{ needs.create-runner.outputs.label }}
Expand Down