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
6 changes: 5 additions & 1 deletion .github/workflows/build_wheels_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ on:
required: false
type: string
default: x86_64
runner:
description: "Override runner for builds"
default: ""
type: string
submodules:
description: Works as stated in actions/checkout, but the default value is recursive
required: false
Expand Down Expand Up @@ -133,7 +137,7 @@ jobs:
ARCH: ${{ inputs.architecture }}
BUILD_TARGET: ${{ inputs.build-target }}
name: build-${{ matrix.build_name }}
runs-on: ${{ matrix.validation_runner }}
runs-on: ${{ (inputs.runner != '' && inputs.runner) || matrix.validation_runner }}
environment: ${{(inputs.trigger-event == 'schedule' || (inputs.trigger-event == 'push' && (startsWith(github.event.ref, 'refs/heads/nightly') || startsWith(github.event.ref, 'refs/tags/v')))) && 'pytorchbot-env' || ''}}
container:
image: ${{ matrix.container_image }}
Expand Down