Skip to content

Add windows CI workflow #153

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jun 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/rolling-semi-binary-build-win.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Rolling Windows Semi-Binary Build
# author: Christoph Fröhlich <[email protected]>
# description: 'Build & test all dependencies from semi-binary packages.'

on:
workflow_dispatch:
pull_request:
branches:
- master
# types:
# - labeled
push:
branches:
- master
# issue_comment:
# types:
# - created

jobs:
binary-windows:
# if: |
# (github.event_name == 'issue_comment' && contains(github.event.comment.body, '/check-windows')) ||
# (github.event_name == 'pull_request' && contains(github.event.label.name, 'check-windows')) ||
# (github.event_name == 'workflow_dispatch')
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-ros-tooling-win-build.yml@master
with:
ros_distro: rolling
ref_for_scheduled_build: master
pixi_dependencies: boost compilers
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,14 @@
#ifndef KINEMATICS_INTERFACE__KINEMATICS_INTERFACE_HPP_
#define KINEMATICS_INTERFACE__KINEMATICS_INTERFACE_HPP_

#include <Eigen/Core>
#include <Eigen/Geometry>
#include <Eigen/LU>

#include <memory>
#include <string>
#include <vector>

#include "eigen3/Eigen/Core"
#include "eigen3/Eigen/Geometry"
#include "eigen3/Eigen/LU"
#include "rclcpp/logging.hpp"
#include "rclcpp/node_interfaces/node_parameters_interface.hpp"

Expand Down
Loading