Skip to content

Commit 7c670ac

Browse files
authored
Merge pull request #265 from intel-innersource/rdementi-recursive-checkout
tests workflow: recursive checkout
2 parents c4f4cf1 + af09ec5 commit 7c670ac

21 files changed

+52
-14
lines changed

.github/workflows/ci-clang-scan.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414

1515
steps:
1616
- uses: actions/checkout@v2
17+
with:
18+
submodules: recursive
1719
- name: Configure CMake
1820
run: |
1921
cmake --version

.github/workflows/ci-cmake-options.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414

1515
steps:
1616
- uses: actions/checkout@v2
17+
with:
18+
submodules: recursive
1719

1820
- name: CMake default install
1921
run: |

.github/workflows/ci-cpack.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@v2
16+
with:
17+
submodules: recursive
1618
- name: Configure CMake
1719
run: |
1820
cmake --version
@@ -34,6 +36,8 @@ jobs:
3436

3537
steps:
3638
- uses: actions/checkout@v2
39+
with:
40+
submodules: recursive
3741
- name: Configure CMake
3842
run: |
3943
cmake --version

.github/workflows/ci-cppcheck.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414

1515
steps:
1616
- uses: actions/checkout@v2
17+
with:
18+
submodules: recursive
1719
- name: cppcheck_script
1820
run: |
1921
sh ${{ github.workspace }}/scripts/cppcheck.sh . `getconf _NPROCESSORS_ONLN`

.github/workflows/ci-gcc10.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414

1515
steps:
1616
- uses: actions/checkout@v2
17+
with:
18+
submodules: recursive
1719
- name: Configure CMake
1820
run: |
1921
cmake --version

.github/workflows/ci-gcc48.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ jobs:
1414

1515
steps:
1616
- uses: actions/checkout@v2
17+
- name: install simdjson
18+
uses: actions/checkout@v2
19+
with:
20+
repository: simdjson/simdjson
21+
path: src/simdjson
1722
- name: Configure CMake
1823
run: |
1924
cmake --version

.github/workflows/ci-gcc5.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ jobs:
1414

1515
steps:
1616
- uses: actions/checkout@v2
17+
- name: install simdjson
18+
uses: actions/checkout@v2
19+
with:
20+
repository: simdjson/simdjson
21+
path: src/simdjson
1722
- name: Configure CMake
1823
run: |
1924
cmake --version

.github/workflows/ci-gcc7.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ jobs:
1414

1515
steps:
1616
- uses: actions/checkout@v2
17+
- name: install simdjson
18+
uses: actions/checkout@v2
19+
with:
20+
repository: simdjson/simdjson
21+
path: src/simdjson
1722
- name: Configure CMake
1823
run: |
1924
cmake --version

.github/workflows/ci-gcc9.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414

1515
steps:
1616
- uses: actions/checkout@v2
17+
with:
18+
submodules: recursive
1719
- name: Configure CMake
1820
run: |
1921
cmake --version

.github/workflows/ci-kw-linux-report.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ jobs:
1010

1111
steps:
1212
- uses: actions/checkout@v2
13+
with:
14+
submodules: recursive
1315
- name: kw
1416
run: |
1517
mkdir build

0 commit comments

Comments
 (0)