summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/PULL_REQUEST_TEMPLATE/pull_request_template.md13
-rw-r--r--.github/pull_request_template.md22
-rw-r--r--.github/workflows/nectar-asan-dev.yml (renamed from .github/workflows/nectar.yml)12
3 files changed, 29 insertions, 18 deletions
diff --git a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md
deleted file mode 100644
index 6966d96..0000000
--- a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# <Title of PR>
-
-## Rationale:
-
-<Describe the rationale here>
-
-## Process:
-
-<Describe your process here>
-
-## Results:
-
-<Describe the results here> \ No newline at end of file
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md
new file mode 100644
index 0000000..d445654
--- /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 Informations:
+
+<Describe additional information (Optional)>
+
diff --git a/.github/workflows/nectar.yml b/.github/workflows/nectar-asan-dev.yml
index a545122..5c54807 100644
--- a/.github/workflows/nectar.yml
+++ b/.github/workflows/nectar-asan-dev.yml
@@ -1,10 +1,10 @@
-name: Kits CI (Nectar,Stable)
+name: Kits (Nectar,Develop)
on:
push:
- branches: [ "stable" ]
+ branches: [ "develop" ]
pull_request:
- branches: [ "stable" ]
+ branches: [ "develop" ]
jobs:
build:
@@ -13,8 +13,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- - name: Build CI
+ - name: Attempt NeBuild
+ run: sudo curl https://github.com/ne-foss-org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o sanity-test
+ - name: Build CompilerKit and DebuggerKit
run: sudo curl https://github.com/ne-foss-org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o /bin/nebuild && sudo chmod +x /bin/nebuild && sudo apt update && sudo apt install build-essential && sudo apt install libboost-dev &&
- cd src/CompilerKit && nebuild ck-posix.json &&
+ cd src/CompilerKit && nebuild ck-posix-san.json &&
cd ../DebuggerKit && nebuild dk-posix.json