csp packet in place crypto #60
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: Build CI | |
| on: | |
| push: | |
| branches: [ "*" ] | |
| pull_request: | |
| branches: [ "*" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Setup build system packages on Linux | |
| run: | | |
| sudo apt-get install ninja-build meson tree gcc-arm-none-eabi python3-pip libbsd-dev | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-tags: true | |
| fetch-depth: 100 | |
| - name: Meson build & test | |
| run: | | |
| meson setup builddir -Dcsp:packet_padding_bytes=38 && ninja -C builddir test |