examples: Check the encoded error in returned iio structures #588
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: FreeBSD Test | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["13.2"] | |
name: Test FreeBSD | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install libiio dependencies of FreeBSD | |
id: test | |
uses: vmactions/freebsd-vm@v1 | |
with: | |
release: ${{ matrix.os }} | |
usesh: true | |
prepare: | | |
pkg update | |
pkg install -y git cmake ninja libxml2 bison flex libserialport avahi doxygen graphviz | |
run: | | |
mkdir build | |
cd build | |
cmake .. -DWITH_SERIAL_BACKEND=ON | |
make | |