feat: Use an XList for domains in ST_LIB.hpp #617
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: Compile Checks | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - '**.cpp' | |
| - '**.hpp' | |
| - '**.c' | |
| - '**.h' | |
| - '**.py' | |
| - 'CMakeLists.txt' | |
| branches: | |
| - development | |
| workflow_run: | |
| workflows: [ "Build Toolchain Image" ] | |
| types: | |
| - completed | |
| jobs: | |
| compile-checks: | |
| name: Check project compiles | |
| strategy: | |
| matrix: | |
| preset: | |
| - nucleo-debug | |
| - nucleo-release | |
| - nucleo-relwithdebinfo | |
| - nucleo-debug-eth | |
| - nucleo-release-eth | |
| - nucleo-relwithdebinfo-eth | |
| - board-debug | |
| - board-release | |
| - board-relwithdebinfo | |
| - board-debug-eth-ksz8041 | |
| - board-debug-eth-lan8700 | |
| - board-release-eth-ksz8041 | |
| - board-release-eth-lan8700 | |
| - board-relwithdebinfo-eth-ksz8041 | |
| - board-relwithdebinfo-eth-lan8700 | |
| # - simulator | |
| fail-fast: false | |
| uses: ./.github/workflows/build.yml | |
| with: | |
| preset: ${{ matrix.preset }} |