diff options
| -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 |
