Skip to content

Commit

Permalink
Enable FAT12 support in CI Build Check
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbartell committed Jan 30, 2024
1 parent b3d76b4 commit d7ec45d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
- 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:
Expand Down

0 comments on commit d7ec45d

Please sign in to comment.