Skip to content

Commit 8b22c61

Browse files
authored
Merge pull request WildKernels#23 from fatalcoder524/main
Add Support for OnePlus 10T & 10 Pro and Support more than 10 devices.
2 parents d8f0302 + 23a061c commit 8b22c61

File tree

10 files changed

+94
-180
lines changed

10 files changed

+94
-180
lines changed

.github/workflows/build-kernel-release.yml

Lines changed: 94 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,32 +15,115 @@ on:
1515

1616
jobs:
1717
build-kernel-op11:
18-
uses: ./.github/workflows/op11.yml
18+
uses: ./.github/workflows/build.yml
1919
secrets: inherit
20+
with:
21+
model: "OP11"
22+
soc: "kalama"
23+
branch: "oneplus/sm8550"
24+
manifest: "oneplus_11_v.xml"
25+
android_version: "android13"
26+
kernel_version: "5.15"
2027
build-kernel-op11r:
21-
uses: ./.github/workflows/op11r.yml
28+
uses: ./.github/workflows/build.yml
2229
secrets: inherit
30+
with:
31+
model: "OP11r"
32+
soc: "waipio"
33+
branch: "oneplus/sm8475"
34+
manifest: "oneplus_11r_v.xml"
35+
android_version: "android13"
36+
kernel_version: "5.10"
2337
build-kernel-op12:
24-
uses: ./.github/workflows/op12.yml
38+
uses: ./.github/workflows/build.yml
2539
secrets: inherit
40+
with:
41+
model: "OP12"
42+
soc: "pineapple"
43+
branch: "oneplus/sm8650"
44+
manifest: "oneplus12_v.xml"
45+
android_version: "android14"
46+
kernel_version: "6.1"
2647
build-kernel-op13r:
27-
uses: ./.github/workflows/op13r.yml
48+
uses: ./.github/workflows/build.yml
2849
secrets: inherit
50+
with:
51+
model: "OP13r"
52+
soc: "pineapple"
53+
branch: "oneplus/sm8650"
54+
manifest: "oneplus_13r.xml"
55+
android_version: "android14"
56+
kernel_version: "6.1"
2957
build-kernel-opnord4:
30-
uses: ./.github/workflows/opnord4.yml
58+
uses: ./.github/workflows/build.yml
3159
secrets: inherit
60+
with:
61+
model: "OP-NORD-4"
62+
soc: "pineapple"
63+
branch: "oneplus/sm7675"
64+
manifest: "oneplus_nord_4_v.xml"
65+
android_version: "android14"
66+
kernel_version: "6.1"
3267
build-kernel-opopen:
33-
uses: ./.github/workflows/opopen.yml
68+
uses: ./.github/workflows/build.yml
3469
secrets: inherit
70+
with:
71+
model: "OP-OPEN"
72+
soc: "kalama"
73+
branch: "oneplus/sm8550"
74+
manifest: "oneplus_open_v.xml"
75+
android_version: "android13"
76+
kernel_version: "5.15"
3577
build-kernel-opace2:
36-
uses: ./.github/workflows/opace2.yml
78+
uses: ./.github/workflows/build.yml
3779
secrets: inherit
80+
with:
81+
model: "OP-ACE-2"
82+
soc: "waipio"
83+
branch: "oneplus/sm8475"
84+
manifest: "oneplus_ace2_v.xml"
85+
android_version: "android13"
86+
kernel_version: "5.10"
3887
build-kernel-opace2pro:
39-
uses: ./.github/workflows/opace2pro.yml
88+
uses: ./.github/workflows/build.yml
4089
secrets: inherit
90+
with:
91+
model: "OP-ACE-2-PRO"
92+
soc: "kalama"
93+
branch: "oneplus/sm8550"
94+
manifest: "oneplus_ace2pro_v.xml"
95+
android_version: "android13"
96+
kernel_version: "5.15"
4197
build-kernel-opace5:
42-
uses: ./.github/workflows/opace5.yml
98+
uses: ./.github/workflows/build.yml
4399
secrets: inherit
100+
with:
101+
model: "OP-ACE-5"
102+
soc: "pineapple"
103+
branch: "oneplus/sm8650"
104+
manifest: "oneplus_ace5.xml"
105+
android_version: "android14"
106+
kernel_version: "6.1"
107+
build-kernel-op10t:
108+
uses: ./.github/workflows/build.yml
109+
secrets: inherit
110+
with:
111+
model: "OP10t"
112+
soc: "waipio"
113+
branch: "oneplus/sm8475"
114+
manifest: "oneplus_10t_v.xml"
115+
android_version: "android12"
116+
kernel_version: "5.10"
117+
build-kernel-op10pro:
118+
uses: ./.github/workflows/build.yml
119+
secrets: inherit
120+
with:
121+
model: "OP10pro"
122+
soc: "waipio"
123+
branch: "oneplus/sm8450"
124+
manifest: "oneplus_10_pro_v.xml"
125+
android_version: "android12"
126+
kernel_version: "5.10"
44127

45128
trigger-release:
46129
runs-on: ubuntu-latest
@@ -54,6 +137,8 @@ jobs:
54137
- build-kernel-opace2
55138
- build-kernel-opace2pro
56139
- build-kernel-opace5
140+
- build-kernel-op10t
141+
- build-kernel-op10pro
57142
if: ${{ inputs.make_release }}
58143
env:
59144
REPO_OWNER: TheWildJames

.github/workflows/op11.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/op11r.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/op12.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/op13r.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/opace2.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/opace2pro.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/opace5.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/opnord4.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/opopen.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)