diff options
| -rw-r--r-- | .github/PULL_REQUEST_TEMPLATE/pull_request_template.md | 13 | ||||
| -rw-r--r-- | .github/pull_request_template.md | 22 | ||||
| -rw-r--r-- | .github/workflows/nectar-asan-dev.yml (renamed from .github/workflows/nectar.yml) | 12 | ||||
| -rw-r--r-- | README.md | 6 | ||||
| -rw-r--r-- | doc/notices/LinuxDynamicLoader.md (renamed from doc/notices/dyld.md) | 2 |
5 files changed, 34 insertions, 21 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 @@ -2,9 +2,11 @@ # 🍯 The Nectar Language -<a href="LICENSE"><img src="https://img.shields.io/badge/License-Apache--2.0-blue.svg" alt="License"></a> +<a href="LICENSE"><img src="https://img.shields.io/badge/LICENSE-Apache--2.0-blue.svg" alt="License"></a> + +  - + # About: diff --git a/doc/notices/dyld.md b/doc/notices/LinuxDynamicLoader.md index 9c97e4d..5e5a136 100644 --- a/doc/notices/dyld.md +++ b/doc/notices/LinuxDynamicLoader.md @@ -1,4 +1,4 @@ -# Linking on Linux: +# Linking Nectar on Linux: You will need: |
