mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
72 lines
979 B
YAML
72 lines
979 B
YAML
---
|
|
kind: pipeline
|
|
name: intel
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: build
|
|
privileged: true
|
|
image: rancher/dapper:v0.4.0
|
|
volumes:
|
|
- name: docker
|
|
path: /var/run/docker.sock
|
|
commands:
|
|
- dapper ci
|
|
|
|
volumes:
|
|
- name: docker
|
|
host:
|
|
path: /var/run/docker.sock
|
|
|
|
---
|
|
kind: pipeline
|
|
name: arm
|
|
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
steps:
|
|
- name: build
|
|
privileged: true
|
|
image: rancher/dapper:v0.4.0
|
|
environment:
|
|
DAPPER_HOST_ARCH: arm
|
|
volumes:
|
|
- name: docker
|
|
path: /var/run/docker.sock
|
|
commands:
|
|
- dapper ci
|
|
|
|
volumes:
|
|
- name: docker
|
|
host:
|
|
path: /var/run/docker.sock
|
|
|
|
|
|
---
|
|
kind: pipeline
|
|
name: arm64
|
|
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
steps:
|
|
- name: build
|
|
privileged: true
|
|
image: rancher/dapper:v0.4.0
|
|
volumes:
|
|
- name: docker
|
|
path: /var/run/docker.sock
|
|
commands:
|
|
- dapper ci
|
|
|
|
volumes:
|
|
- name: docker
|
|
host:
|
|
path: /var/run/docker.sock
|