Add patches #9
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
name: "Debian kernel" | |
on: | |
push: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: sudo apt update; sudo apt install -y git build-essential ncurses-dev xz-utils libssl-dev bc flex libelf-dev bison binutils debhelper | |
- name: Build kernel | |
run: bash build.sh | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: debian-kernel | |
path: | | |
*.deb |