-
Notifications
You must be signed in to change notification settings - Fork 480
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #338 from opcm/push_2021_10_22
Push 2021 10 22
- Loading branch information
Showing
41 changed files
with
961 additions
and
233 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: clang-scan | ||
|
||
on: | ||
push: | ||
branches: [ '**' ] | ||
pull_request: | ||
branches: [ '**' ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ci-clang-scan | ||
if: ${{ github.repository != 'opcm/pcm' }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: scan-build | ||
run: | | ||
scan-build --exclude simdjson --status-bugs make -j | ||
make clean | ||
git clone https://github.com/simdjson/simdjson.git | ||
scan-build --exclude simdjson --status-bugs make -j |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: cppcheck | ||
|
||
on: | ||
push: | ||
branches: [ '**' ] | ||
pull_request: | ||
branches: [ '**' ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ci-cppcheck | ||
if: ${{ github.repository != 'opcm/pcm' }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: cppcheck_script | ||
run: | | ||
sh cppcheck.sh . `getconf _NPROCESSORS_ONLN` | ||
git clone https://github.com/simdjson/simdjson.git | ||
sh cppcheck.sh . `getconf _NPROCESSORS_ONLN` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: g++ 10 build | ||
|
||
on: | ||
push: | ||
branches: [ '**' ] | ||
pull_request: | ||
branches: [ '**' ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ci-gcc10 | ||
if: ${{ github.repository != 'opcm/pcm' }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: make | ||
run: | | ||
g++ --version | ||
make install prefix=. -j | ||
make clean | ||
git clone https://github.com/simdjson/simdjson.git | ||
make install prefix=. -j |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: g++ 4.8 build | ||
|
||
on: | ||
push: | ||
branches: [ '**' ] | ||
pull_request: | ||
branches: [ '**' ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ci-gcc48 | ||
if: ${{ github.repository != 'opcm/pcm' }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: make | ||
run: | | ||
g++ --version | ||
make install prefix=. -j | ||
make clean | ||
git clone https://github.com/simdjson/simdjson.git | ||
make install prefix=. -j | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: g++ 5 build | ||
|
||
on: | ||
push: | ||
branches: [ '**' ] | ||
pull_request: | ||
branches: [ '**' ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ci-gcc5 | ||
if: ${{ github.repository != 'opcm/pcm' }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: make | ||
run: | | ||
g++ --version | ||
make install prefix=. -j | ||
make clean | ||
git clone https://github.com/simdjson/simdjson.git | ||
make install prefix=. -j |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: g++ 7 build | ||
|
||
on: | ||
push: | ||
branches: [ '**' ] | ||
pull_request: | ||
branches: [ '**' ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ci-gcc7 | ||
if: ${{ github.repository != 'opcm/pcm' }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: make | ||
run: | | ||
g++ --version | ||
make install prefix=. -j | ||
make clean | ||
git clone https://github.com/simdjson/simdjson.git | ||
make install prefix=. -j |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: g++ 9 build | ||
|
||
on: | ||
push: | ||
branches: [ '**' ] | ||
pull_request: | ||
branches: [ '**' ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ci-gcc9 | ||
if: ${{ github.repository != 'opcm/pcm' }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: make | ||
run: | | ||
g++ --version | ||
make install prefix=. -j | ||
make clean | ||
git clone https://github.com/simdjson/simdjson.git | ||
make install prefix=. -j |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: MSVC Windows build | ||
|
||
on: | ||
push: | ||
branches: [ '**' ] | ||
pull_request: | ||
branches: [ '**' ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ci-windows | ||
if: ${{ github.repository != 'opcm/pcm' }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Add MSBuild to PATH | ||
uses: microsoft/[email protected] | ||
|
||
- name: msbuild | ||
run: | | ||
msbuild pcm-all.sln /p:Configuration=Release,Platform=x64 /t:Clean,Build /m | ||
git clone https://github.com/simdjson/simdjson.git | ||
msbuild pcm-all.sln /p:Configuration=Release,Platform=x64 /t:Clean,Build /m | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.