Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build KernelSU as LKM #1254

Merged
merged 22 commits into from
Mar 15, 2024
Merged
Prev Previous commit
Next Next commit
ci: some fixes
  • Loading branch information
tiann committed Mar 11, 2024
commit 1209174ff4493c9d2fd73783f3a4fc370c675437
5 changes: 4 additions & 1 deletion .github/workflows/gki-kernel.yml
Original file line number Diff line number Diff line change
@@ -200,7 +200,9 @@ jobs:
mkdir output
cp $OUTDIR/Image ./output/
cp $OUTDIR/Image.lz4 ./output/
cp $OUTDIR/*.ko ./output/
if [ "${{ inputs.build_lkm}}" = "true" ]; then
cp $OUTDIR/*.ko ./output/
fi
git clone https://github.com/Kernel-SU/AnyKernel3
rm -rf ./AnyKernel3/.git
cp $OUTDIR/Image ./AnyKernel3/
@@ -219,6 +221,7 @@ jobs:

- name: Upload kernelsu.ko
uses: actions/upload-artifact@v4
if: ${{ inputs.build_lkm == true }}
with:
name: ${{ inputs.version_name }}_kernelsu.ko
path: ./output/kernelsu.ko
Loading