-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
attempt to recurse submodules in the pipeline
- Loading branch information
1 parent
16a89a6
commit 7145da0
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ defaults: | |
run: | ||
shell: bash | ||
|
||
# jobs are run in paralell on different machines | ||
# jobs are run in parallel on different machines | ||
# all steps run in series | ||
jobs: | ||
build_and_test: | ||
|
@@ -102,7 +102,7 @@ jobs: | |
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true # Get JUCE populated | ||
submodules: recursive # get all submodules | ||
|
||
- name: Cache the build | ||
uses: mozilla-actions/[email protected] | ||
|