We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12c066c commit bef8103Copy full SHA for bef8103
.github/workflows/build-kernel.yml
@@ -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