We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2327fe commit 0280c75Copy full SHA for 0280c75
.github/workflows/build_and_test_jazzy.yml
@@ -23,10 +23,11 @@ jobs:
23
CCACHE_DIR: "${{ github.workspace }}/.ccache" # directory for ccache (and how we enable ccache in industrial_ci)
24
steps:
25
- uses: actions/checkout@v4 # clone target repository
26
+ with:
27
+ submodules: true
28
- uses: actions/cache@v4 # fetch/store the directory used by ccache before/after the ci run
29
with:
30
path: ${{ env.CCACHE_DIR }}
- submodules: true
31
# This configuration will always create a new ccache cache starting off from the previous one (if any).
32
# In this simple version it will be shared between all builds of the same ROS_REPO and ROS_REPO
33
# and might need some fine-tuning to match the use case
0 commit comments