-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
67 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Android14-5.15 Kernel Module Build | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
name: GKI Kernel Module Build | ||
runs-on: ubuntu-latest | ||
needs: upload-artifact | ||
env: | ||
CCACHE_COMPILERCHECK: "%compiler% -dumpmachine; %compiler% -dumpversion" | ||
CCACHE_NOHASHDIR: "true" | ||
CCACHE_HARDLINK: "true" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
tag: | ||
- android14-5.15 | ||
arch: | ||
- aarch64 | ||
|
||
steps: | ||
- name: Maximize build space | ||
uses: easimon/maximize-build-space@master | ||
with: | ||
root-reserve-mb: 8192 | ||
temp-reserve-mb: 2048 | ||
remove-dotnet: 'true' | ||
remove-android: 'true' | ||
remove-haskell: 'true' | ||
remove-codeql: 'true' | ||
remove-docker-images: 'true' | ||
|
||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run GKI Kernel Build Action | ||
uses: ./ | ||
with: | ||
arch: ${{ matrix.arch }} | ||
tag: ${{ matrix.tag }} | ||
fast_build: false | ||
module-name: ovo | ||
module-path: ovo | ||
|
||
upload-artifact: | ||
name: Upload LKM Source Code | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Upload LKM Source Code | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ovo | ||
path: ovo |
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