Skip to content

Commit

Permalink
add also UDRAL and DiffPresSensor
Browse files Browse the repository at this point in the history
  • Loading branch information
serges147 committed Oct 16, 2024
1 parent c82f8cf commit 8bed4a8
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,42 @@ jobs:

- name: Build
run: cmake --build ${{github.workspace}}/libudpard_demo/build --config ${{env.BUILD_TYPE}}

build_differential_pressure_sensor:
name: Build Differential Pressure Sensor demo
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: get nunavut
run: >
pip install nunavut
- name: Configure CMake
run: cmake -B ${{github.workspace}}/differential_pressure_sensor/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} ${{github.workspace}}/differential_pressure_sensor

- name: Build
run: cmake --build ${{github.workspace}}/differential_pressure_sensor/build --config ${{env.BUILD_TYPE}}


build_udral_servo:
name: Build UDRAL Servo demo
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: get nunavut
run: >
pip install nunavut
- name: Configure CMake
run: cmake -B ${{github.workspace}}/udral_servo/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} ${{github.workspace}}/udral_servo

- name: Build
run: cmake --build ${{github.workspace}}/udral_servo/build --config ${{env.BUILD_TYPE}}

0 comments on commit 8bed4a8

Please sign in to comment.