Skip to content

Commit e465abd

Browse files
authored
Re-enable rolling build on Windows (#1382)
This PR updates the URL for downloading ROS2 Rolling binaries on Windows, changing from the old ci.ros2.org build farm to the newer GitHub releases location. The title suggests this is meant to "re-enable" rolling builds on Windows. **Changes:** - Updated the wget URL from `ci.ros2.org/view/packaging/job/packaging_windows/lastSuccessfulBuild/artifact/ws/ros2-package-windows-AMD64.zip` to `github.com/ros2/ros2/releases/download/release-rolling-nightlies/ros2-rolling-nightly-windows-amd64.zip` Fix: #1383
1 parent 15d04b1 commit e465abd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/windows-build-and-test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- humble
2020
- jazzy
2121
- kilted
22+
- rolling
2223
steps:
2324
- name: Setup Node.js ${{ matrix.node-version }}
2425
uses: actions/setup-node@v6
@@ -39,7 +40,7 @@ jobs:
3940
if: ${{ matrix.ros_distribution == 'rolling' }}
4041
shell: bash
4142
run: |
42-
wget --quiet https://ci.ros2.org/view/packaging/job/packaging_windows/lastSuccessfulBuild/artifact/ws/ros2-package-windows-AMD64.zip -O rolling.zip
43+
wget --quiet https://github.com/ros2/ros2/releases/download/release-rolling-nightlies/ros2-rolling-nightly-windows-amd64.zip -O rolling.zip
4344
7z x rolling.zip -y -o/c/dev/rolling
4445
4546
- name: Prebuild - Setup VS Dev Environment

0 commit comments

Comments
 (0)