Add workflow for automating kernel build

This change automates kernel builds on our self-hosted runner.
This commit is contained in:
Fabian Mastenbroek 2020-04-28 15:14:26 +02:00
parent 2b91eaf97f
commit bd2f30a978
No known key found for this signature in database
GPG key ID: 405FC6F81F0A7B85
2 changed files with 27 additions and 0 deletions

25
.github/workflows/build.yml vendored Normal file
View 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
View file

@ -0,0 +1,2 @@
# Proxmox Edge kernels
Custom Linux kernels for Promox VE 6.