Skip to content

Initial ROS 2 Work

Initial ROS 2 Work #42

Workflow file for this run

name: test-clang-format
on: [push, pull_request]
jobs:
c_style_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: DoozyX/[email protected]
with:
source: '.'
# exclude: './third_party ./external'
extensions: 'c,h,cpp,hpp'
clangFormatVersion: 14
style: llvm
c_build_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: DoozyX/[email protected]
- uses: lukka/get-cmake@latest
- name: Build pam module
run: |
apt update && apt install libpam0g-dev -y
./install_pam.sh
./pam/build/myprogram
- name: Build usb_switch
run: |
cd mirte-master/usb_switch/
sudo apt install libgpiod-dev -y
mkdir build
cd build
cmake ..
make -j