Skip to content

Commit

Permalink
workflows/ci-yocto: clone with submodules
Browse files Browse the repository at this point in the history
A submodule was added in the CI repository to get test-report-pdf.
This commit adds the fetch of this submodule when cloning the CI in the
GitHub Action file.

Signed-off-by: Erwann Roussy <[email protected]>
  • Loading branch information
eroussy committed Jan 11, 2024
1 parent 98fa995 commit 61663bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-yocto-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

- name: Initialize sources
run: mkdir ${{ env.WORK_DIR }}; cd ${{ env.WORK_DIR }};
git clone -q --depth 1 -b main https://github.com/seapath/ci ci;
git clone -q --depth 1 --recurse-submodules -b main https://github.com/seapath/ci ci;
echo "CI sources downloaded successfully";
ci/launch-yocto.sh init;

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-yocto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- name: Initialize sources
run: mkdir ${{ env.WORK_DIR }}; cd ${{ env.WORK_DIR }};
git clone -q --depth 1 -b main https://github.com/seapath/ci ci;
git clone -q --depth 1 --recurse-submodules -b main https://github.com/seapath/ci ci;
echo "CI sources downloaded successfully";
ci/launch-yocto.sh init;

Expand Down

0 comments on commit 61663bf

Please sign in to comment.