forked from msm8916-mainline/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
49 lines (40 loc) · 811 Bytes
/
.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
---
kind: pipeline
name: aarch64
platform:
os: linux
arch: arm64
clone:
depth: 16
steps:
- name: build
image: arm64v8/alpine:3.12
commands: [./.drone.sh build]
- name: check
image: arm64v8/alpine:3.12
commands: [./.drone.sh check]
when:
event: pull_request
trigger:
event: [push, pull_request, tag]
---
kind: pipeline
name: armv7
platform:
os: linux
arch: arm
clone:
depth: 16
steps:
- name: build
image: arm32v7/alpine:3.12
commands:
- cat arch/arm64/configs/msm8916_defconfig arch/arm/configs/msm8916_defconfig.part > arch/arm/configs/msm8916_defconfig
- ./.drone.sh build
- name: check
image: arm32v7/alpine:3.12
commands: [./.drone.sh check]
when:
event: pull_request
trigger:
event: [push, pull_request, tag]