Next stage of COBS development, with TPIU channels in COBS frame header #258
This file contains 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 Linux binaries | |
on: | |
- push | |
- pull_request | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- run: sudo apt-get install -y libusb-1.0-0-dev libzmq3-dev meson libsdl2-dev | |
- uses: actions/checkout@v3 | |
- run: meson setup ./build | |
- run: ninja -C ./build | |
- run: meson install -C ./build --destdir ./install | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: orbuculum-linux | |
path: build/install/**/* | |
if-no-files-found: error | |