forked from Loup-ROM/msm-3.18
-
Notifications
You must be signed in to change notification settings - Fork 7
/
.drone.yml
50 lines (43 loc) · 881 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
50
---
kind: pipeline
name: Loup Kernel O
platform:
os: linux
arch: amd64
steps:
- name: Build docker image
build:
image: bitrvmpd/debian-build-kernel
context: .
dockerfile: Dockerfile
- name: Sync dependencies
image: bitrvmpd/debian-build-kernel
commands:
- 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: Build Kernel
image: bitrvmpd/debian-build-kernel
commands:
- chmod +x build.sh
- ./build.sh --no-menuconfig
environment:
LOUP_WORKING_DIR: /usr/src
volumes:
- name: cache
path: /usr/src
volumes:
- name: cache
temp: {}
trigger:
branch:
- rel/msm-3.18-oreo
event:
- push
...