From 1da6dfe30f2a0aab0d7423551128dff27e31551f Mon Sep 17 00:00:00 2001 From: Daniel Proano <179722984+DanielProano@users.noreply.github.com> Date: Thu, 30 Jul 2026 23:36:00 -0400 Subject: [PATCH 1/2] ci fix --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39657f6..aee8314 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,18 +9,18 @@ on: jobs: build: runs-on: ubuntu-latest - - steps: + + steps: - name: Checkout Dragofly uses: actions/checkout@v4 - + - name: Install ARM run: | sudo apt-get update sudo apt-get install -y gcc-arm-none-eabi cmake - + - name: Configure run: cmake -B build - + - name: Build run: cmake --build build \ No newline at end of file From 12d7d99709842845d9cefd292a99f49341418f6b Mon Sep 17 00:00:00 2001 From: Daniel Proano <179722984+DanielProano@users.noreply.github.com> Date: Thu, 30 Jul 2026 23:39:24 -0400 Subject: [PATCH 2/2] ci fixed --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aee8314..5511bf0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,8 @@ jobs: steps: - name: Checkout Dragofly uses: actions/checkout@v4 + with: + submodules: true - name: Install ARM run: |