This repository has been archived by the owner on Jun 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
build.yml
87 lines (75 loc) · 3.42 KB
/
build.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
kind: pipeline
name: RAD KERNEL BUILD GCC
clone:
disable: true
steps:
- name: gnu-gcc oldcam
image: archlinux:latest
environment:
PUBLIC_PUSH:
from_secret: PUBLIC_PUSH
TG_BOT_API:
from_secret: TG_BOT_API
commands:
- curl https://raw.githubusercontent.com/theradcolor/lazyscripts/master/etc/workaround > workaround && bash workaround
- pacman -Sy base-devel bc curl git jre-openjdk zip --noconfirm
- git clone --depth=1 --quiet https://github.com/theradcolor/android_kernel_xiaomi_whyred.git -b ${DRONE_COMMIT_BRANCH} source && cd source
- git clone --depth=1 --quiet https://github.com/theradcolor/lazyscripts.git -b master
- script -c "bash -x lazyscripts/ci-scripts/ci-rad --oldcam --gcc --gcc-master --lto" build-logs-rad-gcc-oldcam.log && bash /drone/src/source/lazyscripts/ci-scripts/logger --rk-logs
---
kind: pipeline
name: RAD KERNEL BUILD CLANG
clone:
disable: true
steps:
- name: llvm-clang oldcam
image: archlinux:latest
environment:
PUBLIC_PUSH:
from_secret: PUBLIC_PUSH
TG_BOT_API:
from_secret: TG_BOT_API
commands:
- curl https://raw.githubusercontent.com/theradcolor/lazyscripts/master/etc/workaround > workaround && bash workaround
- pacman -Sy base-devel bc curl git jre-openjdk zip --noconfirm
- git clone --depth=1 --quiet https://github.com/theradcolor/android_kernel_xiaomi_whyred.git -b ${DRONE_COMMIT_BRANCH} source && cd source
- git clone --depth=1 --quiet https://github.com/theradcolor/lazyscripts.git -b master
- script -c "bash -x lazyscripts/ci-scripts/ci-rad --oldcam --proton-clang --lto" build-logs-rad-proton-clang-oldcam.log && bash /drone/src/source/lazyscripts/ci-scripts/logger --rk-logs
---
kind: pipeline
name: RAD KERNEL BUILD AOSP CLANG
clone:
disable: true
steps:
- name: aosp-clang oldcam
image: archlinux:latest
environment:
PUBLIC_PUSH:
from_secret: PUBLIC_PUSH
TG_BOT_API:
from_secret: TG_BOT_API
commands:
- curl https://raw.githubusercontent.com/theradcolor/lazyscripts/master/etc/workaround > workaround && bash workaround
- pacman -Sy base-devel bc curl git jre-openjdk wget zip --noconfirm
- git clone --depth=1 --quiet https://github.com/theradcolor/android_kernel_xiaomi_whyred.git -b ${DRONE_COMMIT_BRANCH} source && cd source
- git clone --depth=1 --quiet https://github.com/theradcolor/lazyscripts.git -b master
- script -c "bash -x lazyscripts/ci-scripts/ci-rad --oldcam --aosp-clang --lto" build-logs-rad-aosp-clang-oldcam.log && bash /drone/src/source/lazyscripts/ci-scripts/logger --rk-logs
---
kind: pipeline
name: FAKERAD KERNEL BUILD GCC
clone:
disable: true
steps:
- name: gnu-gcc oldcam
image: archlinux:latest
environment:
KERNEL_TYPE: fakerad
TG_BOT_API:
from_secret: TG_BOT_API
commands:
- curl https://raw.githubusercontent.com/theradcolor/lazyscripts/master/etc/workaround > workaround && bash workaround
- pacman -Sy base-devel bc curl git jre-openjdk zip --noconfirm
- git clone --depth=1 --quiet https://github.com/theradcolor/android_kernel_xiaomi_whyred.git -b ${CI_BRANCH} source && cd source
- if [ ! -d /drone/src/source/ ]; then mkdir source && cd source; fi
- git clone --depth=1 --quiet https://github.com/theradcolor/lazyscripts.git -b master
- script -c "bash -x lazyscripts/ci-scripts/ci-fake" build-logs-fakerad.log && bash /drone/src/source/lazyscripts/ci-scripts/logger --frk-logs