Skip to content

Revert "ARM toolchain doesnt need to be in path" #23

Revert "ARM toolchain doesnt need to be in path"

Revert "ARM toolchain doesnt need to be in path" #23

Workflow file for this run

name: Run Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake build-essential
- name: Build test suite
run: cmake -Bbuild -DJOYBUS_BACKEND_LOOPBACK=1 && cmake --build build
- name: Run tests
run: ctest --test-dir build --output-on-failure