Add workflow for automating kernel build
This change automates kernel builds on our self-hosted runner.
This commit is contained in:
parent
2b91eaf97f
commit
bd2f30a978
2 changed files with 27 additions and 0 deletions
25
.github/workflows/build.yml
vendored
Normal file
25
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
name: Kernel Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [master]
|
||||||
|
tags:
|
||||||
|
- release/*
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: [self-hosted]
|
||||||
|
steps:
|
||||||
|
- name: Checkout Sources
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
clean: false # Re-use artifacts from previous build
|
||||||
|
submodules: recursive
|
||||||
|
- name: Build Kernel
|
||||||
|
run: make
|
||||||
|
- name: Upload Artifacts
|
||||||
|
uses: actions/upload-artifact@v2-preview
|
||||||
|
with:
|
||||||
|
name: debs
|
||||||
|
path: "*.deb"
|
||||||
|
|
2
README.md
Normal file
2
README.md
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
# Proxmox Edge kernels
|
||||||
|
Custom Linux kernels for Promox VE 6.
|
Loading…
Add table
Reference in a new issue