This repository has been archived by the owner on Apr 17, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release Kernel Delivery System and support Waydroid
- Loading branch information
1 parent
f75ae9c
commit aa5d04e
Showing
2 changed files
with
23 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters