Skip to content
This repository has been archived by the owner on Apr 17, 2024. It is now read-only.

Commit

Permalink
Release Kernel Delivery System and support Waydroid
Browse files Browse the repository at this point in the history
  • Loading branch information
MilkyDeveloper committed Jun 2, 2022
1 parent f75ae9c commit aa5d04e
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 10 deletions.
31 changes: 22 additions & 9 deletions .github/workflows/kernel.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,38 @@
name: 🐧 Build Linux Kernel
name: 📦 Kernel Delivery System
on:
push:
paths:
- "kernel/*"
- "**.conf"
- "**.yml"
- ".github/workflows/*.yml"

git diff HEAD^..HEAD

jobs:
BuildKernel:
main:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'skip-ci')"
steps:
- name: Check out repository code
uses: actions/checkout@v3
with:
submodules: true
- run: echo "💡 The ${{ github.repository }} repository has been cloned."
fetch-depth: 2
- name: Running build.sh
run: cd kernel; bash build.sh chromeos-5.10;
- name: Upload Artifacts
uses: actions/upload-artifact@v3
# - name: Upload Artifacts
# uses: actions/upload-artifact@v3
# with:
# name: assets-for-download
# path: |
# kernel/bzImage
# kernel/modules*
- name: Release kernel and bzImage
uses: softprops/action-gh-release@v1
with:
name: assets-for-download
path: |
name: 📦 Kernel Rebuild - ${{ github.event.head_commit.message }}
body: |
🚚 Kernel Delivery System - Triggered by ${{ github.sha }} at ${{ github.event.repository.updated_at }}
files: |
kernel/bzImage
kernel/modules*
kernel/modules*
2 changes: 1 addition & 1 deletion kernel.conf
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ CONFIG_CGROUP_WRITEBACK=y
CONFIG_CGROUP_SCHED=y
CONFIG_FAIR_GROUP_SCHED=y
CONFIG_CFS_BANDWIDTH=y
CONFIG_RT_GROUP_SCHED=y
# CONFIG_RT_GROUP_SCHED is not set
CONFIG_CGROUP_PIDS=y
# CONFIG_CGROUP_RDMA is not set
CONFIG_CGROUP_FREEZER=y
Expand Down

0 comments on commit aa5d04e

Please sign in to comment.