diff options
author | Eike Ziller <eike.ziller@qt.io> | 2021-02-12 13:55:28 +0100 |
---|---|---|
committer | Eike Ziller <eike.ziller@qt.io> | 2021-02-12 13:31:04 +0000 |
commit | 9ab69929220fcf6e7effaad35a15b5406ba69637 (patch) | |
tree | 8cc0425d3c349e236e5dd1f0e8f3d491d1bd8005 /.github | |
parent | e6d0ed31601f5a4f6ab02b5bbbc41a7cdabee216 (diff) | |
download | qt-creator-9ab69929220fcf6e7effaad35a15b5406ba69637.tar.gz |
GitHub: Recursively checkout submodules
This will become necessary when qlitehtml is a submodule with litehtml
as a sub-submodule.
Change-Id: I8a2ca47d24bc4b4f3ff88908a49d3f1933ec59ea
Reviewed-by: Cristian Adam <cristian.adam@qt.io>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build_cmake.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml index fc19929367..d98d5dd35d 100644 --- a/.github/workflows/build_cmake.yml +++ b/.github/workflows/build_cmake.yml @@ -49,7 +49,7 @@ jobs: - name: Checkout submodules run: | git submodule set-url -- perfparser https://code.qt.io/qt-creator/perfparser.git - git submodule update --init + git submodule update --init --recursive - name: Download Ninja and CMake shell: cmake -P {0} |