-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.drone.yml
More file actions
44 lines (35 loc) · 692 Bytes
/
.drone.yml
File metadata and controls
44 lines (35 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
kind: pipeline
type: docker
name: 'ARM 64 bit: Build and test'
platform:
os: linux
arch: arm64
steps:
- name: 'Build & Test on ARM 64 bit'
image: 'debian:stretch'
commands:
- bash -e build-and-test-in-docker.sh
---
kind: pipeline
type: docker
name: 'ARM 32 bit: Build and test on'
platform:
os: linux
arch: arm
steps:
- name: 'Build & Test on ARM 32 bit'
image: 'debian:stretch'
commands:
- bash -e build-and-test-in-docker.sh
---
kind: pipeline
type: docker
name: 'x64_86: Build and test'
platform:
os: linux
arch: amd64
steps:
- name: 'Build & Test on x64'
image: 'debian:stretch'
commands:
- bash -e build-and-test-in-docker.sh