Skip to content

Commit bef8103

Browse files
authored
Create build-kernel.yml
1 parent 12c066c commit bef8103

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/build-kernel.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: "Build CR Droid 15 kernel on Taimen." # Description of the workflow.
2+
on:
3+
push:
4+
branches: "15.0" # Branch to build.
5+
workflow_dispatch: # Allow to manually trigger workflow.
6+
jobs:
7+
build:
8+
name: "Build CR Droid 15 kernel"
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: "Checkout kernel source" # Clone the kernel source.
12+
uses: actions/checkout@v2
13+
- name: "Android kernel build" # Build kernel with lemniskett/android-kernel-actions.
14+
uses: lemniskett/android-kernel-actions@master
15+
with:
16+
arch: arm64 # Specify arch
17+
compiler: gcc/9 # Specify toolchain to use
18+
defconfig: wahoo_defconfig # Specify defconfig to use
19+
image: Image.gz-dtb # Specify final build file
20+

0 commit comments

Comments
 (0)