Skip to content

Commit e0a4fd6

Browse files
committed
add build workflow
1 parent 6826a26 commit e0a4fd6

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

.github/workflows/build.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Build on push lineage-21-ksu
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches: [ lineage-21-ksu ]
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout kernel source
13+
uses: actions/checkout@v4
14+
with:
15+
submodules: recursive
16+
17+
- name: Checkout zipper
18+
uses: actions/checkout@v4
19+
with:
20+
repository: cyberc3dr/AnyKernel3
21+
path: zipper
22+
23+
- name: Android kernel build
24+
uses: cyberc3dr/android-kernel-actions@onclite
25+
id: build
26+
env:
27+
NAME: onclite
28+
with:
29+
arch: arm64
30+
compiler: proton-clang/master
31+
defconfig: onclite-perf_defconfig
32+
image: Image
33+
34+
- name: Upload build artifact
35+
uses: actions/upload-artifact@v4
36+
with:
37+
name: onclite
38+
path: zipper/*.zip

0 commit comments

Comments
 (0)