From bd2f30a97872d2bb19be235eb95f6d1b77aee6e7 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Tue, 28 Apr 2020 15:14:26 +0200 Subject: [PATCH] Add workflow for automating kernel build This change automates kernel builds on our self-hosted runner. --- .github/workflows/build.yml | 25 +++++++++++++++++++++++++ README.md | 2 ++ 2 files changed, 27 insertions(+) create mode 100644 .github/workflows/build.yml create mode 100644 README.md diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..3ae6cb8 --- /dev/null +++ b/.github/workflows/build.yml @@ -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" + diff --git a/README.md b/README.md new file mode 100644 index 0000000..8bc9d1d --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# Proxmox Edge kernels +Custom Linux kernels for Promox VE 6.