Skip to content
This repository was archived by the owner on Feb 12, 2022. It is now read-only.

Commit 2a2261e

Browse files
committed
Fix workflow
Signed-off-by: Devin Bonnie <[email protected]>
1 parent 84c3231 commit 2a2261e

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

.github/workflows/build_and_test_release_latest.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,29 +20,24 @@ jobs:
2020
include:
2121
- ros_distro: kinetic
2222
ubuntu_distro: xenial
23-
ros_version: 1
24-
extra_cmake_args: --cmake-target tests
2523
- ros_distro: melodic
2624
ubuntu_distro: bionic
27-
ros_version: 1
28-
extra_cmake_args: --cmake-target tests
2925
container:
3026
image: rostooling/setup-ros-docker:ubuntu-${{ matrix.ubuntu_distro }}-ros-${{ matrix.ros_distro }}-ros-base-latest
27+
env:
28+
# Needed for the CMakeLists.txt setup
29+
ROS_DISTRO: ${{ matrix.ros_distro }}
30+
ROS_VERSION: 1
3131
steps:
3232
# TODO(setup-ros-docker#7): calling chown is necessary for now
3333
- run: sudo chown -R rosbuild:rosbuild "$HOME" .
34-
# Needed for the CMakeLists.txt setup
35-
- run: export ROS_DISTRO=${{ matrix.ros_distro }}
36-
# Needed for the CMakeLists.txt setup
37-
- run: export ROS_VERSION=${{ matrix.ros_version }}
3834
# Needed to access the vcs repos file from the workspace
3935
- name: Checkout source
4036
uses: actions/checkout@v2
4137
- uses: ros-tooling/[email protected]
4238
with:
4339
source-ros-binary-installation: ${{ matrix.ros_distro }}
4440
package-name: kinesis_video_streamer kinesis_video_msgs
45-
extra-cmake-args: ${{ matrix.extra_cmake_args }}
4641
# schedule runs against the default branch (master), so specify release-latest via repos file
4742
vcs-repo-file-url: "${{ github.workspace }}/.github/workflows/release_latest.repos"
4843
- uses: actions/upload-artifact@v1

0 commit comments

Comments
 (0)