summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.md38
-rw-r--r--.github/ISSUE_TEMPLATE/feature_request.md20
-rw-r--r--.github/pull_request_template.md22
-rw-r--r--.github/workflows/libddk-build.yml26
-rw-r--r--.github/workflows/libsystem-build.yml26
5 files changed, 132 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
new file mode 100644
index 00000000..dd84ea78
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,38 @@
+---
+name: Bug report
+about: Create a report to help us improve
+title: ''
+labels: ''
+assignees: ''
+
+---
+
+**Describe the bug**
+A clear and concise description of what the bug is.
+
+**To Reproduce**
+Steps to reproduce the behavior:
+1. Go to '...'
+2. Click on '....'
+3. Scroll down to '....'
+4. See error
+
+**Expected behavior**
+A clear and concise description of what you expected to happen.
+
+**Screenshots**
+If applicable, add screenshots to help explain your problem.
+
+**Desktop (please complete the following information):**
+ - OS: [e.g. iOS]
+ - Browser [e.g. chrome, safari]
+ - Version [e.g. 22]
+
+**Smartphone (please complete the following information):**
+ - Device: [e.g. iPhone6]
+ - OS: [e.g. iOS8.1]
+ - Browser [e.g. stock browser, safari]
+ - Version [e.g. 22]
+
+**Additional context**
+Add any other context about the problem here.
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
new file mode 100644
index 00000000..bbcbbe7d
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature_request.md
@@ -0,0 +1,20 @@
+---
+name: Feature request
+about: Suggest an idea for this project
+title: ''
+labels: ''
+assignees: ''
+
+---
+
+**Is your feature request related to a problem? Please describe.**
+A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
+
+**Describe the solution you'd like**
+A clear and concise description of what you want to happen.
+
+**Describe alternatives you've considered**
+A clear and concise description of any alternative solutions or features you've considered.
+
+**Additional context**
+Add any other context or screenshots about the feature request here.
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md
new file mode 100644
index 00000000..8920bf5e
--- /dev/null
+++ b/.github/pull_request_template.md
@@ -0,0 +1,22 @@
+# [PR]: <Title of PR>
+
+## Description:
+
+<Describe briefly your PR here.>
+
+## PR Rationale:
+
+<Describe the rationale here>
+
+### PR Process:
+
+<Describe your process here>
+
+## Results:
+
+<Describe the results here>
+
+## Additional Information:
+
+<Describe additional information (Optional)>
+
diff --git a/.github/workflows/libddk-build.yml b/.github/workflows/libddk-build.yml
new file mode 100644
index 00000000..3ddcef1b
--- /dev/null
+++ b/.github/workflows/libddk-build.yml
@@ -0,0 +1,26 @@
+name: NeKernel libDDK [BUILD]
+
+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 /usr/bin/nebuild && sudo chmod +x /usr/bin/nebuild
+ - name: Check NeBuild
+ run: nebuild -v
+ - name: Install QEMU-IMG
+ run: sudo apt update && sudo apt install qemu-utils
+ - name: Attempt Kernel Build
+ run: mkdir tmp && sudo apt install g++-mingw-w64-x86-64 gcc-mingw-w64 nasm && git clone https://github.com/ne-foss-org/ne_kernel.git tmp/kernel && cd tmp/kernel/src/libDDK && nebuild libDDK.json
+
diff --git a/.github/workflows/libsystem-build.yml b/.github/workflows/libsystem-build.yml
new file mode 100644
index 00000000..8a9e9af3
--- /dev/null
+++ b/.github/workflows/libsystem-build.yml
@@ -0,0 +1,26 @@
+name: NeKernel libSystem [BUILD]
+
+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 /usr/bin/nebuild && sudo chmod +x /usr/bin/nebuild
+ - name: Check NeBuild
+ run: nebuild -v
+ - name: Install QEMU-IMG
+ run: sudo apt update && sudo apt install qemu-utils
+ - name: Attempt Kernel Build
+ run: mkdir tmp && sudo apt install g++-mingw-w64-x86-64 gcc-mingw-w64 nasm && git clone https://github.com/ne-foss-org/ne_kernel.git tmp/kernel && cd tmp/kernel/src/libSystem && nebuild libSystem.json
+