Platform

Updated 2 years ago by Admin

Use the platform section to configure the target operating system and architecture and routes the pipeline to the appropriate runner.

Example linux arm64 pipeline:

   1  kind: pipeline
2 type: kubernetes
3 name: default
4
5 platform:
6 os: linux
7 arch: arm64
8
9 steps:
10 - name: build
11 image: golang
12 commands:
13 - go build
14 - go test


How did we do?