feat(vacuum-module): add vent + pump + rpm hardware functions #74
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 'Vacuum Module build/test' | |
| on: | |
| pull_request: | |
| paths: | |
| - 'stm32-modules/vacuum-module/**/*' | |
| - 'stm32-modules/common/**/*' | |
| - 'stm32-modules/include/common/**/*' | |
| - 'stm32-modules/include/vacuum-module/**/*' | |
| - 'cmake/**/*' | |
| - 'CMakeLists.txt' | |
| - 'stm32-modules/CMakeLists.txt' | |
| - 'CMakePresets.json' | |
| - '.clang-format' | |
| - '.clang-tidy' | |
| - 'cpp-utils/**/*' | |
| paths_ignore: | |
| - 'cmake/Arduino*' | |
| push: | |
| paths: | |
| - 'stm32-modules/vacuum-module/**/*' | |
| - 'stm32-modules/common/**/*' | |
| - 'stm32-modules/include/common/**/*' | |
| - 'stm32-modules/include/vacuum-module/**/*' | |
| - 'cmake/**/*' | |
| - 'CMakeLists.txt' | |
| - 'stm32-modules/CMakeLists.txt' | |
| - 'CMakePresets.json' | |
| - '.clang-format' | |
| - '.clang-tidy' | |
| - '.github/workflows/vacuum-module.yaml' | |
| paths_ignore: | |
| - 'cmake/Arduino*' | |
| branches: | |
| - '*' | |
| tags: | |
| - 'vacuum-module@*' | |
| workflow_dispatch: | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| cross-compile-check: | |
| name: 'Cross-Compile/Check' | |
| runs-on: 'ubuntu-24.04' | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: 'actions/checkout@v4' | |
| with: | |
| fetch-depth: 0 | |
| - uses: 'actions/cache@v4' | |
| with: | |
| key: stm32-cross-${{ secrets.MODULES_STM32_CACHE_VERSION }}-${{ hashFiles('cmake/*') }} | |
| restore-keys: stm32-cross-${{ secrets.MODULES_STM32_CACHE_VERSION }}- | |
| path: './stm32-tools' | |
| - name: 'Configure' | |
| run: cmake --preset=stm32-cross . | |
| - name: 'Format' | |
| run: cmake --build --preset cross --target vacuum-module-format-ci | |
| - name: 'Lint' | |
| run: cmake --build --preset cross --target vacuum-module-lint | |
| - name: 'Build startup app' | |
| run: cmake --build --preset cross --target vacuum-module-startup | |
| - name: 'Build' | |
| run: cmake --build --preset cross --target vacuum-module-hex | |
| - name: 'Build full image' | |
| run: cmake --build --preset cross --target vacuum-module-image-hex | |
| - name: 'Build full image binary' | |
| run: cmake --build --preset cross --target vacuum-module-image-bin | |
| host-compile-test: | |
| name: 'Host-Compile/Test' | |
| runs-on: 'ubuntu-24.04' | |
| timeout-minutes: 10 | |
| env: | |
| CC: gcc-13 | |
| CXX: g++-13 | |
| steps: | |
| - run: | | |
| sudo apt update | |
| sudo apt install gcc-13 g++-13 | |
| - uses: 'actions/checkout@v4' | |
| with: | |
| fetch-depth: 0 | |
| - uses: 'actions/cache@v4' | |
| with: | |
| path: './stm32-tools' | |
| key: stm32-host-${{ secrets.MODULES_STM32_CACHE_VERSION }}-${{ hashFiles('cmake/*') }} | |
| restore-keys: stm32-host-${{ secrets.MODULES_STM32_CACHE_VERSION }}- | |
| - name: 'Configure' | |
| run: cmake --preset=stm32-host . | |
| - name: 'Build Simulator' | |
| run: cmake --build --preset host --target vacuum-module-simulator | |
| - name: 'Build and Test' | |
| run: cmake --build --preset vacuum-module-tests |