Skip to content

Commit

Permalink
Clone submodules shallowly (learning-process#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
kmichaelk authored Oct 16, 2024
1 parent 87ecb4f commit 90d1386
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/static-analysis-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Update submodules
run: git submodule update --init --recursive
- name: ccache
uses: hendrikmuhs/[email protected]
with:
Expand All @@ -36,8 +34,6 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Update submodules
run: git submodule update --init --recursive
- name: ccache
uses: hendrikmuhs/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The following parallel programming technologies are considered in practice:

## 0. Download all submodules
```
git submodule update --init --recursive
git submodule update --init --recursive --depth=1
```
## 1. Set up your environment
### Static analysis of project (optional)
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ install:
- python -m pip install xlsxwriter

build_script:
- cmd: git submodule update --init --recursive
- cmd: git submodule update --init --recursive --depth=1
- cmd: mkdir build
- cmd: cmake -S . -B build ^
-D USE_SEQ=ON ^
Expand Down

0 comments on commit 90d1386

Please sign in to comment.