-
Notifications
You must be signed in to change notification settings - Fork 1
61 lines (57 loc) · 1.48 KB
/
kernel.yml
File metadata and controls
61 lines (57 loc) · 1.48 KB
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
name: Pixel Kernel Config
permissions:
contents: write
actions: write
on:
workflow_call:
inputs:
ksu_commit:
required: false
type: string
push:
jobs:
build-kernel-custom:
strategy:
fail-fast: false
matrix:
include:
- device: "6 & 6 Pro"
codename: "raviole"
version: "6.1-android16"
- device: "6a"
codename: "bluejay"
version: "6.1-android16"
- device: "7 & 7 Pro"
codename: "pantah"
version: "6.1-android16"
- device: "7a"
codename: "lynx"
version: "6.1-android16"
- device: "Tablet"
codename: "tangorpro"
version: "6.1-android16"
- device: "Fold"
codename: "felix"
version: "6.1-android16"
- device: "8 & 8 Pro"
codename: "shusky"
version: "6.1-android16"
- device: "8a"
codename: "akita"
version: "6.1-android16"
- device: "9 & 9 Pro & 9 Pro XL"
codename: "caimito"
version: "6.1-android16"
- device: "9 Pro Fold"
codename: "comet"
version: "6.1-android16"
- device: "9a"
codename: "tegu"
version: "6.1-android16"
uses: ./.github/workflows/build.yml
secrets: inherit
with:
device: ${{ matrix.device }}
codename: ${{ matrix.codename }}
version: ${{ matrix.version }}
ksu_commit: ${{ inputs.ksu_commit }}