Skip to content

Commit 1b4696d

Browse files
authored
Merge pull request #438 from intel/push-2022-09-12
push 2022 09 12
2 parents adce380 + f4f814b commit 1b4696d

26 files changed

+95
-102
lines changed

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

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,12 @@ jobs:
1010
build:
1111

1212
runs-on: ci-clang-scan
13-
if: ${{ github.repository != 'opcm/pcm' }}
13+
if: ${{ github.repository != 'intel/pcm' }}
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: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,12 @@ jobs:
1010
build:
1111

1212
runs-on: ci-gcc10
13-
if: ${{ github.repository != 'opcm/pcm' }}
13+
if: ${{ github.repository != 'intel/pcm' }}
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: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,12 @@ on:
99
jobs:
1010
job-build1:
1111
runs-on: ci-gcc9
12-
if: ${{ github.repository != 'opcm/pcm' }}
12+
if: ${{ github.repository != 'intel/pcm' }}
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
@@ -35,15 +32,12 @@ jobs:
3532
3633
job-build2:
3734
runs-on: ci-test
38-
if: ${{ github.repository != 'opcm/pcm' }}
35+
if: ${{ github.repository != 'intel/pcm' }}
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: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@ jobs:
1010
build:
1111

1212
runs-on: ci-cppcheck
13-
if: ${{ github.repository != 'opcm/pcm' }}
13+
if: ${{ github.repository != 'intel/pcm' }}
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: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,12 @@ jobs:
1010
build:
1111

1212
runs-on: ci-gcc10
13-
if: ${{ github.repository != 'opcm/pcm' }}
13+
if: ${{ github.repository != 'intel/pcm' }}
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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
build:
1111

1212
runs-on: ci-gcc48
13-
if: ${{ github.repository != 'opcm/pcm' }}
13+
if: ${{ github.repository != 'intel/pcm' }}
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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
build:
1111

1212
runs-on: ci-gcc5
13-
if: ${{ github.repository != 'opcm/pcm' }}
13+
if: ${{ github.repository != 'intel/pcm' }}
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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
build:
1111

1212
runs-on: ci-gcc7
13-
if: ${{ github.repository != 'opcm/pcm' }}
13+
if: ${{ github.repository != 'intel/pcm' }}
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: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,12 @@ jobs:
1010
build:
1111

1212
runs-on: ci-gcc9
13-
if: ${{ github.repository != 'opcm/pcm' }}
13+
if: ${{ github.repository != 'intel/pcm' }}
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: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,14 @@ jobs:
66
build:
77

88
runs-on: ci-kw-linux
9-
if: ${{ github.repository != 'opcm/pcm' }}
9+
if: ${{ github.repository != 'intel/pcm' }}
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)