From 83e29f2ff64543c4bddd5fb179385e5d03b9c73e Mon Sep 17 00:00:00 2001 From: Justin Carpentier <justin.carpentier@inria.fr> Date: Wed, 2 Aug 2023 11:41:48 +0200 Subject: [PATCH] ci/ros: disable ccache --- .github/workflows/ros_ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ros_ci.yml b/.github/workflows/ros_ci.yml index 2441baae..8d8246ef 100644 --- a/.github/workflows/ros_ci.yml +++ b/.github/workflows/ros_ci.yml @@ -16,7 +16,7 @@ jobs: - {ROS_DISTRO: foxy} - {ROS_DISTRO: rolling} env: - CCACHE_DIR: /github/home/.ccache # Enable ccache + # CCACHE_DIR: /github/home/.ccache # Enable ccache BUILDER: colcon PRERELEASE: true runs-on: ubuntu-latest @@ -25,10 +25,10 @@ jobs: with: submodules: recursive # This step will fetch/store the directory used by ccache before/after the ci run - - uses: actions/cache@v3 - with: - path: ${{ env.CCACHE_DIR }} - key: ccache-${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }} + # - uses: actions/cache@v3 + # with: + # path: ${{ env.CCACHE_DIR }} + # key: ccache-${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }} # Run industrial_ci - uses: 'ros-industrial/industrial_ci@6a8f546cbd31fbd5c9f77e3409265c8b39abc3d6' env: ${{ matrix.env }} -- GitLab