2023-02-22 16:23:11 +01:00
|
|
|
|
|
|
|
name: PikaOS Kernel Build Only
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: self-hosted
|
|
|
|
container:
|
2024-02-26 14:45:38 +01:00
|
|
|
image: ghcr.io/pikaos-linux/pika-package-container:latest
|
2023-02-22 16:23:11 +01:00
|
|
|
volumes:
|
|
|
|
- /proc:/proc
|
|
|
|
options: --privileged -it
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Build Kernel
|
|
|
|
run: ./main.sh
|
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: PikaOS Kernel
|
2023-04-10 21:48:02 +02:00
|
|
|
path: output/
|