k3s/.drone.yml

72 lines
979 B
YAML
Raw Normal View History

2019-01-01 08:23:01 +00:00
---
2019-01-26 05:10:04 +00:00
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
2019-01-01 08:23:01 +00:00
privileged: true
2019-01-26 05:10:04 +00:00
image: rancher/dapper:v0.4.0
environment:
DAPPER_HOST_ARCH: arm
2019-01-01 08:23:01 +00:00
volumes:
2019-01-26 05:10:04 +00:00
- name: docker
path: /var/run/docker.sock
2019-01-01 08:23:01 +00:00
commands:
- dapper ci
2019-01-26 05:10:04 +00:00
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
2019-01-01 08:23:01 +00:00
commands:
2019-01-26 05:10:04 +00:00
- dapper ci
volumes:
- name: docker
host:
path: /var/run/docker.sock