Skip to content
New issue

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

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

Already on GitHub? # to your account

Add support for Jazzy binaries on Windows #684

Merged
merged 1 commit into from
May 23, 2024
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
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ jobs:
- humble
# Iron Irwini (May 2023 - November 2024)
- iron
# Jazzy Jalisco (May 2024 - May 2029)
- jazzy
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4.0.2
Expand Down
1 change: 1 addition & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7460,6 +7460,7 @@ const utils = __importStar(__nccwpck_require__(1314));
const binaryReleases = {
humble: "https://github.com/ros2/ros2/releases/download/release-humble-20230614/ros2-humble-20230614-windows-release-amd64.zip",
iron: "https://github.com/ros2/ros2/releases/download/release-iron-20230523/ros2-iron-20230523-windows-release-amd64.zip",
jazzy: "https://github.com/ros2/ros2/releases/download/release-jazzy-20240523/ros2-jazzy-20250523-windows-release-amd64.zip",
};
const pip3Packages = ["lxml", "netifaces"];
/**
Expand Down
2 changes: 2 additions & 0 deletions src/setup-ros-windows.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ const binaryReleases: { [index: string]: string } = {
humble:
"https://github.com/ros2/ros2/releases/download/release-humble-20230614/ros2-humble-20230614-windows-release-amd64.zip",
iron: "https://github.com/ros2/ros2/releases/download/release-iron-20230523/ros2-iron-20230523-windows-release-amd64.zip",
jazzy:
"https://github.com/ros2/ros2/releases/download/release-jazzy-20240523/ros2-jazzy-20250523-windows-release-amd64.zip",
};

const pip3Packages: string[] = ["lxml", "netifaces"];
Expand Down
Loading