forked from android-linux-stable/msm-3.18
-
Notifications
You must be signed in to change notification settings - Fork 16
/
.drone.yml
64 lines (56 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
---
kind: pipeline
name: Loup Kernel O
platform:
os: linux
arch: amd64
steps:
- name: Sync dependencies
pull: if-not-exists
image: bitrvmpd/debian-build
commands:
- mkdir -p $LOUP_WORKING_DIR
- cd $LOUP_WORKING_DIR
- git clone https://github.com/bitrvmpd/aarch64-linux-android-7.x.git --depth=1
- git clone https://github.com/bitrvmpd/AnyKernel2.git --depth=1
- echo "Testing"
environment:
LOUP_WORKING_DIR: /usr/src
volumes:
- name: cache
path: /usr/src
- name: ssh
path: /root/.ssh
- name: Build Kernel
pull: if-not-exists
image: bitrvmpd/debian-build
commands:
- chmod +x build.sh
- ./build.sh --no-menuconfig
- mv $LOUP_WORKING_DIR/AnyKernel2/*.zip /usr/src/out
environment:
LOUP_WORKING_DIR: /usr/src
volumes:
- name: cache
path: /usr/src
- name: output
path: /usr/src/out
- name: ssh
path: /root/.ssh
git_config:
- http.PostBuffer 1048576000
volumes:
- name: cache
temp: {}
- name: output
host:
path: /home/wuff/projects/misc/msm-3.18
- name: ssh
host:
path: /home/wuff/.ssh
trigger:
branch:
- rel/msm-3.18-oreo
event:
- push
...