examples: python: Call print_interfaces #8
Workflow file for this run
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 and Test | |
on: [push, pull_request] | |
jobs: | |
run-tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-22.04 | |
- ubuntu-20.04 | |
#- macos-latest | |
arch: | |
- posix | |
buildsystem: | |
- meson | |
- cmake | |
- waf | |
compiler: | |
- CC: gcc | |
CXX: g++ | |
- CC: clang | |
CXX: clang++ | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Setup packages on Linux | |
if: ${{ runner.os == 'Linux' }} | |
run: | | |
sudo apt-get update | |
sudo apt-get install libzmq3-dev libsocketcan-dev socat | |
- name: Setup build system packages on Linux | |
if: ${{ runner.os == 'Linux' && matrix.buildsystem != 'waf' }} | |
run: | | |
sudo apt-get install ninja-build ${{ matrix.buildsystem }} | |
- name: Setup packages on MacOS | |
if: ${{ runner.os == 'macOS' && matrix.buildsystem != 'waf' }} | |
run: | | |
brew update | |
brew install ninja ${{ matrix.buildsystem }} | |
brew install zeromq | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build | |
env: | |
CC: ${{ matrix.compiler.CC }} | |
CXX: ${{ matrix.compiler.CXX }} | |
run: python3 ./examples/buildall.py ${{ matrix.arch }} --build-system=${{ matrix.buildsystem }} | |
- name: Run Loopback Test | |
run: | | |
./build/examples/csp_arch | |
./build/examples/csp_server_client -T 10 | |
- name: Run KISS Client Test | |
run: | | |
socat -d -d -d pty,raw,echo=0,link=/tmp/pty1 pty,raw,echo=0,link=/tmp/pty2 & | |
sleep 1 | |
./build/examples/csp_server -k /tmp/pty1 -a 1 -T 10 & | |
./build/examples/csp_client -k /tmp/pty2 -a 2 -C 1 -t | |
pkill socat | |
- name: Run KISS Server Test | |
run: | | |
socat -d -d -d pty,raw,echo=0,link=/tmp/pty1 pty,raw,echo=0,link=/tmp/pty2 & | |
sleep 1 | |
./build/examples/csp_client -k /tmp/pty2 -a 2 -C 1 -T 10 & | |
./build/examples/csp_server -k /tmp/pty1 -a 1 -t | |
pkill socat | |
- name: Run ZMQ Client Test | |
run: | | |
./build/examples/zmqproxy & | |
./build/examples/csp_server -z localhost -a 1 -T 10 & | |
./build/examples/csp_client -z localhost -a 2 -C 1 -t | |
pkill zmqproxy | |
- name: Run ZMQ Server Test | |
run: | | |
./build/examples/zmqproxy & | |
./build/examples/csp_client -z localhost -a 2 -C 1 -T 10 & | |
./build/examples/csp_server -z localhost -a 1 -t | |
pkill zmqproxy |