forked from organicmaps/organicmaps
[github] Faster boost submodules checkout for actions
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
138fefddf9
commit
80090fc66c
8 changed files with 9 additions and 9 deletions
2
.github/workflows/android-beta.yaml
vendored
2
.github/workflows/android-beta.yaml
vendored
|
@ -45,7 +45,7 @@ jobs:
|
|||
|
||||
- name: Parallel submodules checkout
|
||||
shell: bash
|
||||
run: git submodule update --init --recursive --jobs=$(($(nproc) * 2))
|
||||
run: git submodule update --depth 1 --init --recursive --jobs=$(($(nproc) * 20))
|
||||
|
||||
- name: Checkout private keys
|
||||
uses: actions/checkout@v3
|
||||
|
|
2
.github/workflows/android-check.yaml
vendored
2
.github/workflows/android-check.yaml
vendored
|
@ -48,7 +48,7 @@ jobs:
|
|||
|
||||
- name: Parallel submodules checkout
|
||||
shell: bash
|
||||
run: git submodule update --init --recursive --jobs=$(($(nproc) * 2))
|
||||
run: git submodule update --depth 1 --init --recursive --jobs=$(($(nproc) * 20))
|
||||
|
||||
- name: Configure in Open Source mode
|
||||
shell: bash
|
||||
|
|
2
.github/workflows/android-monkey.yaml
vendored
2
.github/workflows/android-monkey.yaml
vendored
|
@ -51,7 +51,7 @@ jobs:
|
|||
|
||||
- name: Parallel submodules checkout
|
||||
shell: bash
|
||||
run: git submodule update --init --recursive --jobs=$(($(nproc) * 2))
|
||||
run: git submodule update --depth 1 --init --recursive --jobs=$(($(nproc) * 20))
|
||||
|
||||
- name: Checkout private keys
|
||||
uses: actions/checkout@v3
|
||||
|
|
|
@ -13,7 +13,7 @@ jobs:
|
|||
|
||||
- name: Parallel submodules checkout
|
||||
shell: bash
|
||||
run: git submodule update --init --recursive --jobs=$(($(nproc) * 2))
|
||||
run: git submodule update --depth 1 --init --recursive --jobs=$(($(nproc) * 20))
|
||||
|
||||
- name: Checkout screenshots
|
||||
uses: actions/checkout@v3
|
||||
|
|
2
.github/workflows/android-release.yaml
vendored
2
.github/workflows/android-release.yaml
vendored
|
@ -89,7 +89,7 @@ jobs:
|
|||
|
||||
- name: Parallel submodules checkout
|
||||
shell: bash
|
||||
run: git submodule update --init --recursive --jobs=$(($(nproc) * 2))
|
||||
run: git submodule update --depth 1 --init --recursive --jobs=$(($(nproc) * 20))
|
||||
|
||||
- name: Checkout screenshots
|
||||
uses: actions/checkout@v3
|
||||
|
|
2
.github/workflows/ios-beta.yaml
vendored
2
.github/workflows/ios-beta.yaml
vendored
|
@ -44,7 +44,7 @@ jobs:
|
|||
fetch-depth: 100 # enough to get all commits for the current day
|
||||
|
||||
- name: Parallel submodules checkout
|
||||
run: git submodule update --init --recursive --jobs=4
|
||||
run: git submodule update --depth 1 --init --recursive --jobs=$(($(sysctl -n hw.logicalcpu) * 20))
|
||||
|
||||
- name: Checkout private keys
|
||||
uses: actions/checkout@v3
|
||||
|
|
2
.github/workflows/ios-check.yaml
vendored
2
.github/workflows/ios-check.yaml
vendored
|
@ -42,7 +42,7 @@ jobs:
|
|||
|
||||
- name: Parallel submodules checkout
|
||||
shell: bash
|
||||
run: git submodule update --init --recursive --jobs=4
|
||||
run: git submodule update --depth 1 --init --recursive --jobs=$(($(sysctl -n hw.logicalcpu) * 20))
|
||||
|
||||
- name: Configure
|
||||
shell: bash
|
||||
|
|
4
.github/workflows/linux-check.yaml
vendored
4
.github/workflows/linux-check.yaml
vendored
|
@ -39,7 +39,7 @@ jobs:
|
|||
|
||||
- name: Parallel submodules checkout
|
||||
shell: bash
|
||||
run: git submodule update --init --recursive --jobs=$(($(nproc) * 2))
|
||||
run: git submodule update --depth 1 --init --recursive --jobs=$(($(nproc) * 20))
|
||||
|
||||
- name: Install build tools and dependencies
|
||||
shell: bash
|
||||
|
@ -89,7 +89,7 @@ jobs:
|
|||
|
||||
- name: Parallel submodules checkout
|
||||
shell: bash
|
||||
run: git submodule update --init --recursive --jobs=$(($(nproc) * 2))
|
||||
run: git submodule update --depth 1 --init --recursive --jobs=$(($(nproc) * 20))
|
||||
|
||||
- name: Install build tools and dependencies
|
||||
shell: bash
|
||||
|
|
Loading…
Add table
Reference in a new issue