Skip to content

Commit 04bff95

Browse files
committed
Add Support for OnePlus 10T and OnePlus 10 Pro
1 parent d8f0302 commit 04bff95

File tree

3 files changed

+46
-0
lines changed

3 files changed

+46
-0
lines changed

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,12 @@ jobs:
4141
build-kernel-opace5:
4242
uses: ./.github/workflows/opace5.yml
4343
secrets: inherit
44+
build-kernel-op10t:
45+
uses: ./.github/workflows/op10t.yml
46+
secrets: inherit
47+
build-kernel-op10pro:
48+
uses: ./.github/workflows/op10pro.yml
49+
secrets: inherit
4450

4551
trigger-release:
4652
runs-on: ubuntu-latest
@@ -54,6 +60,8 @@ jobs:
5460
- build-kernel-opace2
5561
- build-kernel-opace2pro
5662
- build-kernel-opace5
63+
- build-kernel-op10t
64+
- build-kernel-op10pro
5765
if: ${{ inputs.make_release }}
5866
env:
5967
REPO_OWNER: TheWildJames

.github/workflows/op10pro.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: OP10pro
2+
permissions:
3+
contents: write # Allow writing to repository contents (for pushing tags)
4+
actions: write # Allows triggering actions
5+
6+
on:
7+
workflow_call: # This allows this workflow to be called from another workflow
8+
9+
jobs:
10+
build-kernel-op10pro-kernelsu-susfs:
11+
uses: ./.github/workflows/build.yml
12+
secrets: inherit
13+
with:
14+
model: "OP10pro"
15+
soc: "waipio"
16+
branch: "oneplus/sm8450"
17+
manifest: "oneplus_10_pro_v.xml"
18+
android_version: "android12"
19+
kernel_version: "5.10"

.github/workflows/op10t.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: OP10t
2+
permissions:
3+
contents: write # Allow writing to repository contents (for pushing tags)
4+
actions: write # Allows triggering actions
5+
6+
on:
7+
workflow_call: # This allows this workflow to be called from another workflow
8+
9+
jobs:
10+
build-kernel-op10t-kernelsu-susfs:
11+
uses: ./.github/workflows/build.yml
12+
secrets: inherit
13+
with:
14+
model: "OP10t"
15+
soc: "waipio"
16+
branch: "oneplus/sm8475"
17+
manifest: "oneplus_10t_v.xml"
18+
android_version: "android12"
19+
kernel_version: "5.10"

0 commit comments

Comments
 (0)