Skip to content

Commit 0280c75

Browse files
committed
chore: Fix checkout action
1 parent c2327fe commit 0280c75

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build_and_test_jazzy.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@ jobs:
2323
CCACHE_DIR: "${{ github.workspace }}/.ccache" # directory for ccache (and how we enable ccache in industrial_ci)
2424
steps:
2525
- uses: actions/checkout@v4 # clone target repository
26+
with:
27+
submodules: true
2628
- uses: actions/cache@v4 # fetch/store the directory used by ccache before/after the ci run
2729
with:
2830
path: ${{ env.CCACHE_DIR }}
29-
submodules: true
3031
# This configuration will always create a new ccache cache starting off from the previous one (if any).
3132
# In this simple version it will be shared between all builds of the same ROS_REPO and ROS_REPO
3233
# and might need some fine-tuning to match the use case

0 commit comments

Comments
 (0)