diff options
Diffstat (limited to '.github')
| -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 |
2 files changed, 29 insertions, 5 deletions
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 |
