summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/c-cpp-dev.yml
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-08-31 10:01:34 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-08-31 10:01:34 +0200
commitab832b358a7d7c84e6a6ff7434747a69b7348261 (patch)
tree59b9e10c344f35c208149e266fcb1898cfc53de8 /.github/workflows/c-cpp-dev.yml
parentc5b11d1eb494f786a337aef41eed64a0ba71f0a6 (diff)
feat: add CI for `dev` as well.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to '.github/workflows/c-cpp-dev.yml')
-rw-r--r--.github/workflows/c-cpp-dev.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/c-cpp-dev.yml b/.github/workflows/c-cpp-dev.yml
new file mode 100644
index 0000000..438eb90
--- /dev/null
+++ b/.github/workflows/c-cpp-dev.yml
@@ -0,0 +1,19 @@
+name: C/C++ CI (CompilerKit)
+
+on:
+ push:
+ branches: [ "dev" ]
+ pull_request:
+ branches: [ "dev" ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v4
+ - name: Install Packages
+ run: sudo apt update && sudo apt install build-essential && git clone https://github.com/nekernel-org/necti.git && cd necti && make && cd .. && cd dev/CompilerKit && nebuild ck-posix.json
+
+