k3s/.drone.yml
2019-01-29 20:10:22 -07:00

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