From 754c7db7fb718dbf151c8d6bc1f618575f35603f Mon Sep 17 00:00:00 2001 From: Dan Rose Date: Wed, 1 Apr 2020 15:21:54 -0500 Subject: [PATCH] better ci job names (#135) --- .github/workflows/CI.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index dd279e1..69cffb7 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -5,18 +5,15 @@ jobs: strategy: fail-fast: false matrix: + rosdistro: [dashing, eloquent, master] os: [ubuntu-18.04, macOS-latest, windows-latest] - repos-url: - - https://raw.githubusercontent.com/ros2/ros2/dashing/ros2.repos - - https://raw.githubusercontent.com/ros2/ros2/eloquent/ros2.repos - - https://raw.githubusercontent.com/ros2/ros2/master/ros2.repos exclude: # pending https://github.com/ament/ament_cmake/pull/233 - - os: windows-latest - repos-url: https://raw.githubusercontent.com/ros2/ros2/eloquent/ros2.repos + - rosdistro: eloquent + os: windows-latest # pending https://github.com/ament/ament_cmake/pull/234 - - os: windows-latest - repos-url: https://raw.githubusercontent.com/ros2/ros2/dashing/ros2.repos + - rosdistro: dashing + os: windows-latest runs-on: ${{ matrix.os }} steps: - name: Acquire ROS dependencies @@ -25,5 +22,4 @@ jobs: uses: ros-tooling/action-ros-ci@0.0.14 with: package-name: rmw_cyclonedds_cpp - vcs-repo-file-url: ${{ matrix.repos-url }} - + vcs-repo-file-url: https://raw.githubusercontent.com/ros2/ros2/${{ matrix.rosdistro }}/ros2.repos