diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-19 01:35:47 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-19 01:35:47 +0100 |
| commit | 36bd2efdc56877729617ccf5222911484fb86d31 (patch) | |
| tree | 45529dd53bc260dae713bc64e374b8b5c00619cb /.github/workflows | |
| parent | fd6cf0d19715d79dee3d067a3d6b498e517904d1 (diff) | |
feat: new README and CI.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/system-ci.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/system-ci.yml b/.github/workflows/system-ci.yml new file mode 100644 index 0000000..3027a43 --- /dev/null +++ b/.github/workflows/system-ci.yml @@ -0,0 +1,22 @@ +name: System CI + +on: + push: + branches: [ "stable" ] + pull_request: + branches: [ "stable" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Install Packages + run: sudo apt-get install libboost-all-dev + - name: Build SuperNE + run: | + cd sbin + mkdir build + cd build
\ No newline at end of file |
