Skip to content

Commit

Permalink
Merge pull request #16 from ctu-mrs/devel
Browse files Browse the repository at this point in the history
added fluid dynamics, fixed compilation on ARM
  • Loading branch information
klaxalk authored Oct 5, 2023
2 parents 606952a + a741e26 commit 3aebd55
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ros_build_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: ros_build_test

on:

push:
branches: [ devel ]

workflow_dispatch:

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:

build:
uses: ctu-mrs/ci_scripts/.github/workflows/ros_build_test.yml@master
secrets:
PUSH_TOKEN: ${{ secrets.PUSH_TOKEN }}
5 changes: 3 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -347,8 +347,9 @@ target_link_libraries(MrsGazeboCommonResources_FluidResistancePlugin

# MotorSpeedRepublisherPlugin

add_library(MrsGazeboCommonResources_MotorSpeedRepublisherPlugin
SHARED src/sensor_and_model_plugins/motor_speed_republisher.cpp
add_library(MrsGazeboCommonResources_MotorSpeedRepublisherPlugin SHARED
src/sensor_and_model_plugins/motor_speed_republisher.cpp
${SEN_PROTO_SRCS}
)

target_link_libraries(MrsGazeboCommonResources_MotorSpeedRepublisherPlugin
Expand Down
2 changes: 1 addition & 1 deletion src/physics_plugins/motor_prop_model_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/


#include "motor_prop_model.h"
#include <motor_prop_model.h>
#include <ignition/math.hh>

namespace gazebo {
Expand Down

0 comments on commit 3aebd55

Please sign in to comment.