Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wolf_ros_imu
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile_robotics
wolf_projects
wolf_ros
wolf_ros_imu
Commits
4d827f67
Commit
4d827f67
authored
2 years ago
by
Joan Vallvé Navarro
Browse files
Options
Downloads
Plain Diff
Merge branch 'devel' into 'main'
Devel See merge request
!6
parents
f3e7ca94
9ef55faa
No related branches found
No related tags found
1 merge request
!6
Devel
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+12
-5
12 additions, 5 deletions
.gitlab-ci.yml
CMakeLists.txt
+3
-1
3 additions, 1 deletion
CMakeLists.txt
package.xml
+1
-1
1 addition, 1 deletion
package.xml
with
16 additions
and
7 deletions
.gitlab-ci.yml
+
12
−
5
View file @
4d827f67
workflow
:
rules
:
-
if
:
'
$CI_PIPELINE_SOURCE
==
"web"'
-
if
:
$CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS && $CI_PIPELINE_SOURCE == "push"
when
:
never
-
if
:
'
$CI_PIPELINE_SOURCE
==
"merge_request_event"'
-
if
:
'
$CI_COMMIT_BRANCH
&&
$CI_OPEN_MERGE_REQUESTS'
when
:
never
-
if
:
'
$CI_COMMIT_BRANCH'
stages
:
-
license
-
build_and_test
...
...
@@ -10,7 +20,6 @@ stages:
-
echo $WOLF_IMU_BRANCH
-
echo $WOLF_ROS_NODE_BRANCH
-
echo $CI_COMMIT_BRANCH
-
echo $WOLF_ROS_IMU_BRANCH
.preliminaries_template
:
&preliminaries_definition
## Install ssh-agent if not already installed, it is required by Docker.
...
...
@@ -79,8 +88,7 @@ stages:
-
if [ -d wolf ]; then
-
echo "directory wolf exists"
-
cd wolf
-
git checkout devel
-
git pull
-
git fetch --all
-
git checkout $WOLF_CORE_BRANCH
-
git pull
-
else
...
...
@@ -98,8 +106,7 @@ stages:
-
if [ -d imu ]; then
-
echo "directory imu exists"
-
cd imu
-
git checkout devel
-
git pull
-
git fetch --all
-
git checkout $WOLF_IMU_BRANCH
-
git pull
-
else
...
...
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
3
−
1
View file @
4d827f67
...
...
@@ -4,7 +4,7 @@ project(wolf_ros_imu)
## Compile as C++14
add_compile_options
(
-std=c++14
)
# -fPIC and -rdynamic ensure unique singleton instance across shared libraries (for factories) see: https://stackoverflow.com/a/8626922
SET
(
CMAKE_CXX_FLAGS
"-fPIC -rdynamic"
)
SET
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-fPIC -rdynamic"
)
## Find catkin macros and libraries
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
...
...
@@ -52,11 +52,13 @@ add_library(publisher_${PROJECT_NAME}
target_link_libraries
(
subscriber_
${
PROJECT_NAME
}
wolfcore
wolfimu
${
catkin_LIBRARIES
}
${
sensor_msgs_LIBRARIES
}
)
target_link_libraries
(
publisher_
${
PROJECT_NAME
}
wolfcore
wolfimu
${
catkin_LIBRARIES
}
${
sensor_msgs_LIBRARIES
}
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
package.xml
+
1
−
1
View file @
4d827f67
...
...
@@ -2,7 +2,7 @@
<package
format=
"2"
>
<name>
wolf_ros_imu
</name>
<version>
0.0.0
</version>
<description>
The wolf_ros package of
GAUSS
project
</description>
<description>
The wolf_ros package of
WOLF
project
</description>
<!-- One maintainer tag required, multiple allowed, one person per tag -->
<!-- Example: -->
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment