Skip to content

Commit beb100b

Browse files
christophfroehlichmergify[bot]
authored andcommitted
Add windows CI workflow (#153)
(cherry picked from commit 4a334b9)
1 parent 46bf64a commit beb100b

File tree

2 files changed

+33
-3
lines changed

2 files changed

+33
-3
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Rolling Windows Semi-Binary Build
2+
# author: Christoph Fröhlich <[email protected]>
3+
# description: 'Build & test all dependencies from semi-binary packages.'
4+
5+
on:
6+
workflow_dispatch:
7+
pull_request:
8+
branches:
9+
- master
10+
# types:
11+
# - labeled
12+
push:
13+
branches:
14+
- master
15+
# issue_comment:
16+
# types:
17+
# - created
18+
19+
jobs:
20+
binary-windows:
21+
# if: |
22+
# (github.event_name == 'issue_comment' && contains(github.event.comment.body, '/check-windows')) ||
23+
# (github.event_name == 'pull_request' && contains(github.event.label.name, 'check-windows')) ||
24+
# (github.event_name == 'workflow_dispatch')
25+
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-ros-tooling-win-build.yml@master
26+
with:
27+
ros_distro: rolling
28+
ref_for_scheduled_build: master
29+
pixi_dependencies: boost compilers

kinematics_interface/include/kinematics_interface/kinematics_interface.hpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,14 @@
1818
#ifndef KINEMATICS_INTERFACE__KINEMATICS_INTERFACE_HPP_
1919
#define KINEMATICS_INTERFACE__KINEMATICS_INTERFACE_HPP_
2020

21+
#include <Eigen/Core>
22+
#include <Eigen/Geometry>
23+
#include <Eigen/LU>
24+
2125
#include <memory>
2226
#include <string>
2327
#include <vector>
2428

25-
#include "eigen3/Eigen/Core"
26-
#include "eigen3/Eigen/Geometry"
27-
#include "eigen3/Eigen/LU"
2829
#include "rclcpp/logging.hpp"
2930
#include "rclcpp/node_interfaces/node_parameters_interface.hpp"
3031

0 commit comments

Comments
 (0)