Run pipeline on specific runner

In this particular example, you would use the platform section of the yaml to specify the architecture. This will ensure Drone routes the pipeline to the correct runner given they have different architectures.

Example:

kind: pipeline
type: docker
name: foo

platform:
  arch: arm   # or arm64
kind: pipeline
type: docker
name: foo

platform:
  arch: amd64

When no architecture is specified Drone assumes amd64.

1 Like