blob: c9d40c7cca5803c5b1359b9ba6c7d58e2360b412 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 && cd necti && make build-nebuild && cd .. && cd dev/CompilerKit && nebuild ck-posix.json
|