Skip to content

Commit

Permalink
Merge pull request #265 from intel-innersource/rdementi-recursive-che…
Browse files Browse the repository at this point in the history
…ckout

tests workflow: recursive checkout
  • Loading branch information
rdementi authored Sep 12, 2022
2 parents c4f4cf1 + af09ec5 commit 7c670ac
Show file tree
Hide file tree
Showing 21 changed files with 52 additions and 14 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci-clang-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:

steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Configure CMake
run: |
cmake --version
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-cmake-options.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:

steps:
- uses: actions/checkout@v2
with:
submodules: recursive

- name: CMake default install
run: |
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ci-cpack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:

steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Configure CMake
run: |
cmake --version
Expand All @@ -34,6 +36,8 @@ jobs:

steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Configure CMake
run: |
cmake --version
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-cppcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:

steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: cppcheck_script
run: |
sh ${{ github.workspace }}/scripts/cppcheck.sh . `getconf _NPROCESSORS_ONLN`
2 changes: 2 additions & 0 deletions .github/workflows/ci-gcc10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:

steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Configure CMake
run: |
cmake --version
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ci-gcc48.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: install simdjson
uses: actions/checkout@v2
with:
repository: simdjson/simdjson
path: src/simdjson
- name: Configure CMake
run: |
cmake --version
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ci-gcc5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: install simdjson
uses: actions/checkout@v2
with:
repository: simdjson/simdjson
path: src/simdjson
- name: Configure CMake
run: |
cmake --version
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ci-gcc7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: install simdjson
uses: actions/checkout@v2
with:
repository: simdjson/simdjson
path: src/simdjson
- name: Configure CMake
run: |
cmake --version
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-gcc9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:

steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Configure CMake
run: |
cmake --version
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-kw-linux-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:

steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: kw
run: |
mkdir build
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-kw-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:

steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: kw
run: |
mkdir build
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ci-kw-windows-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ jobs:

steps:
- uses: actions/checkout@v2

with:
submodules: recursive

- name: Add MSBuild to PATH
uses: microsoft/[email protected]

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ci-kw-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:

steps:
- uses: actions/checkout@v2

with:
submodules: recursive

- name: Add MSBuild to PATH
uses: microsoft/[email protected]

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:

steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Configure CMake
run: |
cmake --version
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:

steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Configure CMake
run: |
if (Test-Path ${{github.workspace}}\build){ Remove-Item ${{github.workspace}}\build -Recurse }
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/clang_scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
with:
submodules: recursive

# Runs a set of commands using the runners shell
- name: preparation
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/cppcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
with:
submodules: recursive

# Runs a set of commands using the runners shell
- name: cppcheck
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:

- name: Checkout code
uses: actions/checkout@v2
with:
submodules: recursive

- name: Set up QEMU
uses: docker/setup-qemu-action@v1
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/linux_make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install simdjson
uses: actions/checkout@v2
with:
repository: simdjson/simdjson
path: src/simdjson
submodules: recursive
- name: cmake
run: |
rm -rf ${{ github.workspace }}/build
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/macos-scan-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,8 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: install simdjson
uses: actions/checkout@v2
with:
repository: simdjson/simdjson
path: src/simdjson
submodules: recursive
- name: cmake
run: |
rm -rf ${{ github.workspace }}/build
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/macosx_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,8 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: install simdjson
uses: actions/checkout@v2
with:
repository: simdjson/simdjson
path: src/simdjson
submodules: recursive
- name: cmake
run: |
rm -rf ${{ github.workspace }}/build
Expand Down

0 comments on commit 7c670ac

Please sign in to comment.