Skip to content

Commit

Permalink
.github: Initialize CI
Browse files Browse the repository at this point in the history
- This will utilize GitHub Actions to build the kernel.

Signed-off-by: Cyber Knight <cyberknight755@gmail.com>
  • Loading branch information
cyberknight777 committed Jul 23, 2023
1 parent 59a9344 commit 2e582d4
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/kernel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Kernel Build CI

on:
push:

env:
TOKEN: ${{ secrets.BOT_TOKEN }}
G_TOKEN: ${{ secrets.G_TOKEN }}
RELEASE: 0
OTA: 0
CI: 1

jobs:
build:
runs-on: ubuntu-latest
container: fedora:latest

steps:
- name: Setup build environment
run: |
sudo dnf install --assumeyes dtc bc flex bison make autoconf openssl-devel elfutils-libelf-devel unzip zip curl wget gh zstd glibc-devel
gh auth login --with-token <<< "${G_TOKEN}"
git config --global user.email "cyberknight755@gmail.com"
git config --global user.name "Cyber Knight"
- name: Clone kernel
run: |
git clone https://github.com/cyberknight777/dragonheart_kernel_oneplus_sm8150 -b rebase --depth=1 kernel
- name: Compile kernel
run: |
cd kernel
bash kramel.sh img mkzip

0 comments on commit 2e582d4

Please sign in to comment.