From bfb03575759a18e54f1ae3c1dbcb464741463589 Mon Sep 17 00:00:00 2001 From: Paul Bartell Date: Tue, 30 Jan 2024 14:35:55 -0800 Subject: [PATCH] Enable FAT12 support in CI Build Check (#65) Description ----------- Enable FAT12 support in CI Build Check Test Steps ----------- N/A Checklist: ---------- - [x] I have tested my changes. No regression in existing tests. - [ N/A ] I have modified and/or added unit-tests to cover the code changes in this Pull Request. Related Issue ----------- By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 396eb33..5b7f324 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,9 +45,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Install Dependencies + run: | + sudo apt install build-essential cmake ninja-build - name: Build checks (Default configuration) run: | - cmake -S . -B build -DFREERTOS_PLUS_FAT_TEST_CONFIGURATION=DEFAULT_CONF + cmake -E env CFLAGS="-DffconfigFAT12_SUPPORT=1" \ + cmake -S . -B build -DFREERTOS_PLUS_FAT_TEST_CONFIGURATION=DEFAULT_CONF -GNinja cmake --build build --target freertos_plus_fat_build_test # complexity: