Skip to content

Commit

Permalink
[CI] action_ros_ci bump & switch to apt-get (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
Simo97Fortu authored Mar 19, 2024
1 parent 711da47 commit 293a6dc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/humble.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ jobs:

steps:
- name: Update
run: apt update
run: apt-get update

- name: Install PIP
run: apt install -y python3-pip lcov
run: apt-get install -y python3-pip lcov

- name: Install colcon tools
run: python3 -m pip install colcon-lcov-result colcon-coveragepy-result

- name: Run Tests
uses: ros-tooling/action-ros-ci@0.3.5
uses: ros-tooling/action-ros-ci@0.3.6
with:
ref: humble
target-ros2-distro: humble
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/iron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:

steps:
- name: Update
run: apt update
run: apt-get update

- name: Install PIP
run: apt install -y python3-pip lcov
run: apt-get install -y python3-pip lcov

- name: Install colcon tools
run: python3 -m pip install colcon-lcov-result colcon-coveragepy-result
Expand All @@ -26,7 +26,7 @@ jobs:
uses: actions/checkout@v4

- name: Run Tests
uses: ros-tooling/action-ros-ci@0.3.5
uses: ros-tooling/action-ros-ci@0.3.6
with:
target-ros2-distro: iron
import-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/rolling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:

steps:
- name: Update
run: apt update
run: apt-get update

- name: Install PIP
run: apt install -y python3-pip lcov
run: apt-get install -y python3-pip lcov

- name: Install colcon tools
run: python3 -m pip install colcon-lcov-result colcon-coveragepy-result
Expand All @@ -26,7 +26,7 @@ jobs:
uses: actions/checkout@v4

- name: Run Tests
uses: ros-tooling/action-ros-ci@0.3.5
uses: ros-tooling/action-ros-ci@0.3.6
with:
target-ros2-distro: rolling
import-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 293a6dc

Please sign in to comment.