forked from msm8916-mainline/linux
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.drone.yml
73 lines (60 loc) · 1.12 KB
/
.drone.yml
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
kind: pipeline
type: docker
name: arm64
platform:
os: linux
arch: amd64
clone:
depth: 1
environment:
ARCH: arm64
steps:
- name: build (gcc)
image: alpine:latest
commands:
- . .ci-prepare.sh gcc
- ./.ci-build.sh
- apk add git && git clean -dxfq
- name: build (clang)
image: alpine:latest
commands:
- . .ci-prepare.sh clang
- ./.ci-build.sh
- name: check
image: alpine:latest
commands:
- apk add git perl
- ./.ci-check.sh origin/$DRONE_TARGET_BRANCH
when:
event: pull_request
---
kind: pipeline
type: docker
name: arm
platform:
os: linux
arch: amd64
clone:
depth: 1
environment:
ARCH: arm
steps:
- name: build (gcc)
image: alpine:latest
commands:
- . .ci-prepare.sh gcc
- ./.ci-build.sh
- apk add git && git clean -dxfq
- name: build (clang)
image: alpine:latest
commands:
- . .ci-prepare.sh clang
- ./.ci-build.sh
- name: check
image: alpine:latest
commands:
- apk add git perl
- ./.ci-check.sh origin/$DRONE_TARGET_BRANCH
when:
event: pull_request