From 99c5b878a048b467d1c66cf5a5ff0ce04975c73b Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Tue, 23 Mar 2021 23:19:55 +0100 Subject: [PATCH] Parallel submodules checkout in GH Actions Signed-off-by: Alexander Borsuk --- .github/workflows/android-beta.yaml | 2 +- .github/workflows/android-check.yaml | 7 +++++-- .github/workflows/desktop-check.yaml | 7 +++++-- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/android-beta.yaml b/.github/workflows/android-beta.yaml index bd0cd14db9..6025d0c415 100644 --- a/.github/workflows/android-beta.yaml +++ b/.github/workflows/android-beta.yaml @@ -20,7 +20,7 @@ jobs: - name: Parallel submodules checkout shell: bash run: | - git submodule update --init --recursive --jobs=20 + git submodule update --init --recursive --jobs=10 - name: Checkout private keys uses: actions/checkout@v2 diff --git a/.github/workflows/android-check.yaml b/.github/workflows/android-check.yaml index 6fe88d8068..210011ca58 100644 --- a/.github/workflows/android-check.yaml +++ b/.github/workflows/android-check.yaml @@ -14,8 +14,11 @@ jobs: - name: Checkout sources uses: actions/checkout@v2 - with: - submodules: recursive + + - name: Parallel submodules checkout + shell: bash + run: | + git submodule update --init --recursive --jobs=10 - name: Configure in Open Source mode shell: bash diff --git a/.github/workflows/desktop-check.yaml b/.github/workflows/desktop-check.yaml index 20ab7456c3..7fb02ec63b 100644 --- a/.github/workflows/desktop-check.yaml +++ b/.github/workflows/desktop-check.yaml @@ -9,8 +9,11 @@ jobs: steps: - name: Checkout sources uses: actions/checkout@v2 - with: - submodules: recursive + + - name: Parallel submodules checkout + shell: bash + run: | + git submodule update --init --recursive --jobs=10 - name: Configure shell: bash