From ab832b358a7d7c84e6a6ff7434747a69b7348261 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 31 Aug 2025 10:01:34 +0200 Subject: feat: add CI for `dev` as well. Signed-off-by: Amlal El Mahrouss --- .github/workflows/c-cpp-dev.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/c-cpp-dev.yml (limited to '.github/workflows/c-cpp-dev.yml') 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 + + -- cgit v1.2.3 From fb9161db1d085c5531ab3a746827d30fabc2d42f Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 31 Aug 2025 10:03:30 +0200 Subject: fix: be explicit in the `make` invocation (use build-nebuild) Signed-off-by: Amlal El Mahrouss --- .github/workflows/c-cpp-dev.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows/c-cpp-dev.yml') diff --git a/.github/workflows/c-cpp-dev.yml b/.github/workflows/c-cpp-dev.yml index 438eb90..6fbfa8e 100644 --- a/.github/workflows/c-cpp-dev.yml +++ b/.github/workflows/c-cpp-dev.yml @@ -14,6 +14,6 @@ jobs: 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 + run: sudo apt update && sudo apt install build-essential && git clone https://github.com/nekernel-org/necti.git && cd necti && make build-nebuild && cd .. && cd dev/CompilerKit && nebuild ck-posix.json -- cgit v1.2.3 From e5cfd9b4a9d352d6567b4afd4472ea8508b4da4d Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 31 Aug 2025 10:09:18 +0200 Subject: fix: fix GIT url for CI. Signed-off-by: Amlal El Mahrouss --- .github/workflows/c-cpp-dev.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows/c-cpp-dev.yml') diff --git a/.github/workflows/c-cpp-dev.yml b/.github/workflows/c-cpp-dev.yml index 6fbfa8e..c9d40c7 100644 --- a/.github/workflows/c-cpp-dev.yml +++ b/.github/workflows/c-cpp-dev.yml @@ -14,6 +14,6 @@ jobs: 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 build-nebuild && cd .. && cd dev/CompilerKit && nebuild ck-posix.json + run: sudo apt update && sudo apt install build-essential && git clone https://github.com/nekernel-org/necti && cd necti && make build-nebuild && cd .. && cd dev/CompilerKit && nebuild ck-posix.json -- cgit v1.2.3 From d84a951e42b69a1c2665548fa5d5f621b91e51ec Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 31 Aug 2025 10:19:50 +0200 Subject: fix: ci: finding a better solution for `nebuild` Signed-off-by: Amlal El Mahrouss --- .github/workflows/c-cpp-dev.yml | 2 +- .github/workflows/c-cpp.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to '.github/workflows/c-cpp-dev.yml') diff --git a/.github/workflows/c-cpp-dev.yml b/.github/workflows/c-cpp-dev.yml index c9d40c7..0dad725 100644 --- a/.github/workflows/c-cpp-dev.yml +++ b/.github/workflows/c-cpp-dev.yml @@ -14,6 +14,6 @@ jobs: 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 && cd necti && make build-nebuild && cd .. && cd dev/CompilerKit && nebuild ck-posix.json + run: sudo apt update && sudo apt install build-essential diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index fa05646..9e7f7a1 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -14,6 +14,6 @@ jobs: 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 + run: sudo apt update && sudo apt install build-essential -- cgit v1.2.3