From 602f74add00ffbd4f782f145a4612445b1a3b7bc Mon Sep 17 00:00:00 2001 From: Dont Forget All Please Date: Thu, 23 Apr 2026 21:21:30 +0300 Subject: [PATCH 1/2] Update build workflow to include cmake Added cmake to the list of installed dependencies. --- .github/workflows/build.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 50ffe6e..960c937 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,12 +35,7 @@ jobs: if: steps.check_makefile.outputs.found == 'true' run: | sudo apt update - sudo apt install -y gcc binutils make grep coreutils - - - name: Clean build directory - if: steps.check_makefile.outputs.found == 'true' - run: | - make clean || true + sudo apt install -y gcc binutils make grep coreutils cmake - name: Build Root Core if: steps.check_makefile.outputs.found == 'true' From 6d38412f73df5cb25d33bc724a90724cc12620b7 Mon Sep 17 00:00:00 2001 From: Dont Forget All Please Date: Thu, 23 Apr 2026 21:21:46 +0300 Subject: [PATCH 2/2] Add step to clean build directory before building --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 960c937..2c82d44 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,6 +37,11 @@ jobs: sudo apt update sudo apt install -y gcc binutils make grep coreutils cmake + - name: Clean build directory + if: steps.check_makefile.outputs.found == 'true' + run: | + make clean || true + - name: Build Root Core if: steps.check_makefile.outputs.found == 'true' run: |