From 9300a25c1f3dbc44f5123a3c9fe4830574e036b6 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 28 Nov 2025 19:35:51 +0100 Subject: chore! core: New structure and Updated CI. Signed-off-by: Amlal El Mahrouss --- .github/workflows/sysroot.yml | 19 +++++++++++++++++++ .github/workflows/system-ci.yml | 19 ------------------- 2 files changed, 19 insertions(+), 19 deletions(-) create mode 100644 .github/workflows/sysroot.yml delete mode 100644 .github/workflows/system-ci.yml (limited to '.github') diff --git a/.github/workflows/sysroot.yml b/.github/workflows/sysroot.yml new file mode 100644 index 0000000..9608e8d --- /dev/null +++ b/.github/workflows/sysroot.yml @@ -0,0 +1,19 @@ +name: SysRoot 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 && sudo curl https://github.com/nekernel-org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o /bin/nebuild && sudo chmod +x /bin/nebuild + - name: Build SysRoot + run: cd tools && nebuild steps.toml && ./steps-sysroot \ No newline at end of file diff --git a/.github/workflows/system-ci.yml b/.github/workflows/system-ci.yml deleted file mode 100644 index d090775..0000000 --- a/.github/workflows/system-ci.yml +++ /dev/null @@ -1,19 +0,0 @@ -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 && sudo curl https://github.com/nekernel-org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o /bin/nebuild && sudo chmod +x /bin/nebuild - - name: Build System - run: cd tools && nebuild steps.toml \ No newline at end of file -- cgit v1.2.3