40 lines
488 B
YAML
40 lines
488 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: default-arm64
|
|
platform:
|
|
arch: arm64
|
|
|
|
steps:
|
|
- name: firststep
|
|
image: alpine
|
|
commands:
|
|
- echo hello world
|
|
- cat README.md
|
|
|
|
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: default-amd64
|
|
platform:
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: firststep
|
|
image: alpine
|
|
commands:
|
|
- echo hello world
|
|
- cat README.md
|
|
|
|
---
|
|
kind: pipeline
|
|
type: kubernetes
|
|
name: default-kube
|
|
|
|
steps:
|
|
- name: firststep
|
|
image: alpine
|
|
commands:
|
|
- echo hello world
|
|
- cat README.md
|