Skip to content

Commit b69d57e

Browse files
Install empy
1 parent 6afbe12 commit b69d57e

File tree

1 file changed

+22
-18
lines changed

1 file changed

+22
-18
lines changed

.github/workflows/reusable-ros-tooling-win-build.yml

Lines changed: 22 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,25 @@ jobs:
5050
with:
5151
python-version: '3.8'
5252

53+
- uses: ros-tooling/[email protected]
54+
with:
55+
required-ros-distributions: ${{ inputs.ros_distro }}
56+
use-ros2-testing: true
57+
58+
- name: Install boost
59+
uses: MarkusJx/[email protected]
60+
if: ${{ inputs.install_boost }}
61+
id: install-boost
62+
with:
63+
# REQUIRED: Specify the required boost version
64+
# A list of supported versions can be found here:
65+
# https://github.com/MarkusJx/prebuilt-boost/blob/main/versions-manifest.json
66+
boost_version: 1.86.0
67+
# OPTIONAL: Specify a platform version
68+
platform_version: 2019
69+
# OPTIONAL: Specify a toolset
70+
toolset: msvc
71+
5372
- name: vcpkg build
5473
uses: johnwason/vcpkg-action@v6
5574
id: vcpkg
@@ -74,24 +93,9 @@ jobs:
7493
"target-triplet=$var2" | Out-File -FilePath $Env:GITHUB_OUTPUT -Append
7594
"manifest-mode=$var3" | Out-File -FilePath $Env:GITHUB_OUTPUT -Append
7695
77-
- uses: ros-tooling/[email protected]
78-
with:
79-
required-ros-distributions: ${{ inputs.ros_distro }}
80-
use-ros2-testing: true
81-
82-
- name: Install boost
83-
uses: MarkusJx/[email protected]
84-
if: ${{ inputs.install_boost }}
85-
id: install-boost
86-
with:
87-
# REQUIRED: Specify the required boost version
88-
# A list of supported versions can be found here:
89-
# https://github.com/MarkusJx/prebuilt-boost/blob/main/versions-manifest.json
90-
boost_version: 1.86.0
91-
# OPTIONAL: Specify a platform version
92-
platform_version: 2019
93-
# OPTIONAL: Specify a toolset
94-
toolset: msvc
96+
- name: Install python dependencies
97+
run: |
98+
pip3 install empty
9599
96100
- name: Checkout default ref when build is not scheduled
97101
if: ${{ github.event_name != 'schedule' }}

0 commit comments

Comments
 (0)