Skip to content

Commit

Permalink
[CI] Remove ccache for ROS-Industrial CI yml (#413)
Browse files Browse the repository at this point in the history
* [CI] Remove ccache

* [CI] Prerelease only for Noetic/Iron

* [CI] Temporarily deactivate until transition to Ubuntu Noble is complete

System dependency resolution fails despite packages supposedly available in Ubuntu repository
  • Loading branch information
wxmerkt authored Mar 17, 2024
1 parent 5745643 commit 0d51bcd
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions .github/workflows/industrial_ci_action.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This config uses industrial_ci (https://github.com/ros-industrial/industrial_ci.git).
# For troubleshooting, see readme (https://github.com/ros-industrial/industrial_ci/blob/master/README.rst)

name: CI
name: ROS-CI

# This determines when this workflow is run
on: [push, pull_request] # on all pushes and PRs
Expand All @@ -11,19 +11,13 @@ jobs:
strategy:
matrix:
env:
- {ROS_DISTRO: noetic}
- {ROS_DISTRO: rolling, PRERELEASE: true}
- {ROS_DISTRO: noetic, PRERELEASE: true}
- {ROS_DISTRO: iron, PRERELEASE: true}
#- {ROS_DISTRO: rolling} # 2024-03-12 temporarily deactivate until transitin to Ubuntu Noble is complete
env:
CCACHE_DIR: /github/home/.ccache # Enable ccache
BUILDER: colcon
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# This step will fetch/store the directory used by ccache before/after the ci run
- uses: actions/cache@v2
with:
path: ${{ env.CCACHE_DIR }}
key: ccache-${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }}
# Run industrial_ci
- uses: actions/checkout@v4
- uses: 'ros-industrial/industrial_ci@master'
env: ${{ matrix.env }}

0 comments on commit 0d51bcd

Please sign in to comment.