Skip to content

Commit f9275d2

Browse files
authored
[CI] Turn off ccache for prerelease builds
1 parent 0ccadcd commit f9275d2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci-linux-ros.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- {ROS_DISTRO: rolling, CMAKE_BUILD_TYPE: Debug, VECTORIZATION_SUPPORT: ON}
1414
- {ROS_DISTRO: rolling, CMAKE_BUILD_TYPE: Release, VECTORIZATION_SUPPORT: ON}
1515
env:
16-
CCACHE_DIR: /github/home/.ccache # Enable ccache
16+
#CCACHE_DIR: /github/home/.ccache # Enable ccache
1717
CMAKE_ARGS: -DBUILD_WITH_VECTORIZATION_SUPPORT=${{ matrix.env.VECTORIZATION_SUPPORT }} # Simde is available since humble
1818
PRERELEASE: true
1919
runs-on: ubuntu-latest
@@ -22,10 +22,10 @@ jobs:
2222
with:
2323
submodules: recursive
2424
# This step will fetch/store the directory used by ccache before/after the ci run
25-
- uses: actions/cache@v3
26-
with:
27-
path: ${{ env.CCACHE_DIR }}
28-
key: ccache-${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }}
25+
#- uses: actions/cache@v3
26+
# with:
27+
# path: ${{ env.CCACHE_DIR }}
28+
# key: ccache-${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }}
2929
# Run industrial_ci
3030
- uses: 'ros-industrial/industrial_ci@master'
3131
env: ${{ matrix.env }}

0 commit comments

Comments
 (0)