Skip to content

Commit 1717431

Browse files
committed
Merge tag '2022-09-12' into push-2022-09-12
Change-Id: Ie682ee9f26ea8012d3d4c900e11393759051e411
2 parents adce380 + 7c670ac commit 1717431

26 files changed

+76
-83
lines changed

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

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

1515
steps:
1616
- uses: actions/checkout@v2
17-
- name: Preparation
18-
run: |
19-
cd ${{ github.workspace }}/src
20-
git clone https://github.com/simdjson/simdjson.git
21-
cd ..
17+
with:
18+
submodules: recursive
2219
- name: Configure CMake
2320
run: |
2421
cmake --version

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

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

1515
steps:
1616
- uses: actions/checkout@v2
17-
- name: Preparation
18-
run: |
19-
cd ${{ github.workspace }}/src
20-
git clone https://github.com/simdjson/simdjson.git
21-
cd ..
17+
with:
18+
submodules: recursive
2219

2320
- name: CMake default install
2421
run: |

.github/workflows/ci-cpack.yml

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

1414
steps:
1515
- uses: actions/checkout@v2
16-
- name: Preparation
17-
run: |
18-
cd ${{ github.workspace }}/src
19-
git clone https://github.com/simdjson/simdjson.git
20-
cd ..
16+
with:
17+
submodules: recursive
2118
- name: Configure CMake
2219
run: |
2320
cmake --version
@@ -39,11 +36,8 @@ jobs:
3936

4037
steps:
4138
- uses: actions/checkout@v2
42-
- name: Preparation
43-
run: |
44-
cd ${{ github.workspace }}/src
45-
git clone https://github.com/simdjson/simdjson.git
46-
cd ..
39+
with:
40+
submodules: recursive
4741
- name: Configure CMake
4842
run: |
4943
cmake --version

.github/workflows/ci-cppcheck.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414

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

.github/workflows/ci-gcc10.yml

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

1515
steps:
1616
- uses: actions/checkout@v2
17-
- name: Preparation
18-
run: |
19-
cd ${{ github.workspace }}/src
20-
git clone https://github.com/simdjson/simdjson.git
21-
cd ..
17+
with:
18+
submodules: recursive
2219
- name: Configure CMake
2320
run: |
2421
cmake --version

.github/workflows/ci-gcc48.yml

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

1515
steps:
1616
- uses: actions/checkout@v2
17-
- name: Preparation
18-
run: |
19-
cd ${{ github.workspace }}/src
20-
git clone https://github.com/simdjson/simdjson.git
21-
cd ..
17+
- name: install simdjson
18+
uses: actions/checkout@v2
19+
with:
20+
repository: simdjson/simdjson
21+
path: src/simdjson
2222
- name: Configure CMake
2323
run: |
2424
cmake --version

.github/workflows/ci-gcc5.yml

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

1515
steps:
1616
- uses: actions/checkout@v2
17-
- name: Preparation
18-
run: |
19-
cd ${{ github.workspace }}/src
20-
git clone https://github.com/simdjson/simdjson.git
21-
cd ..
17+
- name: install simdjson
18+
uses: actions/checkout@v2
19+
with:
20+
repository: simdjson/simdjson
21+
path: src/simdjson
2222
- name: Configure CMake
2323
run: |
2424
cmake --version

.github/workflows/ci-gcc7.yml

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

1515
steps:
1616
- uses: actions/checkout@v2
17-
- name: Preparation
18-
run: |
19-
cd ${{ github.workspace }}/src
20-
git clone https://github.com/simdjson/simdjson.git
21-
cd ..
17+
- name: install simdjson
18+
uses: actions/checkout@v2
19+
with:
20+
repository: simdjson/simdjson
21+
path: src/simdjson
2222
- name: Configure CMake
2323
run: |
2424
cmake --version

.github/workflows/ci-gcc9.yml

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

1515
steps:
1616
- uses: actions/checkout@v2
17-
- name: Preparation
18-
run: |
19-
cd ${{ github.workspace }}/src
20-
git clone https://github.com/simdjson/simdjson.git
21-
cd ..
17+
with:
18+
submodules: recursive
2219
- name: Configure CMake
2320
run: |
2421
cmake --version

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,10 @@ jobs:
1010

1111
steps:
1212
- uses: actions/checkout@v2
13+
with:
14+
submodules: recursive
1315
- name: kw
1416
run: |
15-
cd src
16-
git clone https://github.com/simdjson/simdjson.git
17-
cd ..
1817
mkdir build
1918
cd build
2019
cmake ..

0 commit comments

Comments
 (0)