Skip to content

Commit

Permalink
[CI] Remove ccache
Browse files Browse the repository at this point in the history
  • Loading branch information
wxmerkt authored May 4, 2023
1 parent 0e23fc9 commit a96d632
Showing 1 changed file with 3 additions and 15 deletions.
18 changes: 3 additions & 15 deletions .github/workflows/industrial_ci_action.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
# 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

# This determines when this workflow is run
on: [push, pull_request] # on all pushes and PRs
on: [push, pull_request]

jobs:
CI:
Expand All @@ -15,18 +10,11 @@ jobs:
#- {ROS_DISTRO: melodic, PRERELEASE: true}
- {ROS_DISTRO: noetic}
- {ROS_DISTRO: noetic, PRERELEASE: true}
- {ROS_DISTRO: noetic, OS_NAME: debian, OS_CODE_NAME: buster}
#- {ROS_DISTRO: noetic, OS_NAME: debian, OS_CODE_NAME: buster}
env:
CCACHE_DIR: /github/home/.ccache # Enable ccache
PARALLEL_BUILDS: 4
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@v3
- uses: 'ros-industrial/industrial_ci@master'
env: ${{ matrix.env }}

0 comments on commit a96d632

Please sign in to comment.