Skip to content

Commit

Permalink
Merge branch 'master' into dev/reference_wrapper_support
Browse files Browse the repository at this point in the history
  • Loading branch information
kunitoki committed Apr 17, 2023
2 parents 49495c6 + d469f83 commit 12f232b
Show file tree
Hide file tree
Showing 22 changed files with 881 additions and 336 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
- "**/CMakeLists.txt"
- "**/.gitmodules"

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

env:
BUILD_TYPE: Release

Expand All @@ -22,7 +26,10 @@ jobs:
with:
submodules: true

- uses: seanmiddleditch/gha-setup-ninja@master
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get -y install ninja-build
- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
- "**/CMakeLists.txt"
- "**/.gitmodules"

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

env:
BUILD_TYPE: Release

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
- "**/CMakeLists.txt"
- "**/.gitmodules"

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

env:
BUILD_TYPE: Release

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ on:
- "**/CMakeLists.txt"
- "**/.gitmodules"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
BUILD_TYPE: Release

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
- "**/CMakeLists.txt"
- "**/.gitmodules"

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/sonar.yml → .github/workflows/sonar.yml_
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ on:
- "**/.gitmodules"
- "**/sonar-project.properties"

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

env:
BUILD_TYPE: Release
BUILD_WRAPPER_OUT_DIR: build_wrapper_output_directory
Expand Down

0 comments on commit 12f232b

Please sign in to comment.