blob: 444519653fad77ab41b5f5d624c0ad66616341cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
name: Ne.org Kernel Setup
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
env:
BUILD_TYPE: KERNEL_BUILD
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Attempt NeBuild
run: sudo curl https://git.src.nekernel.org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o /bin/nebuild
- name: Check NeBuild
run: nebuild -v
- name: Attempt Kernel Setup
run: mkdir tmp && git clone https://git.src.nekernel.org/kernel tmp/kernel && ./tmp/kernel/scripts/setup_x64_project.sh
|