Skip to content

telemetry GPS supported test,remote debug fix #164

telemetry GPS supported test,remote debug fix

telemetry GPS supported test,remote debug fix #164

Workflow file for this run

name: CMake
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
BUILD_TYPE: Debug
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@master
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Install wiringpi
run: sudo apt-get install wiringpi pigpio
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}