diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-09 04:34:06 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-09 04:34:06 +0100 |
| commit | 0aee45ac24871063dace9a4c17f4a78d6209b51f (patch) | |
| tree | cea8b64b22a9a0588909befabc3333b991d4a4ab /.github/workflows | |
| parent | 8965e688d10c6b54231966cdaa951f7e44b49554 (diff) | |
[CHORE] Add kernel-build.yml
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/kernel-build.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/kernel-build.yml b/.github/workflows/kernel-build.yml new file mode 100644 index 0000000..4445196 --- /dev/null +++ b/.github/workflows/kernel-build.yml @@ -0,0 +1,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 +
\ No newline at end of file |
