-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create 1 pipeline for each OS (#104)
* [WIP] gcov add to debug * update gcc debug cmake config * [appveyor] upload coverage result to codecov * [appveyor] fix upload gcov report gcc linux debug * [appveyor] linux add lcov package * [appveyor] fix add lcov pkg * [azure-pipelines] sonarCloud refactor to run also on linux. Add gcov reports * [azure-pipelines] fix #105 * [azure-pipelines] fix #105 * [azure-pipelines] fix #105 * [azure-pipelines] fix #105 * [azure-pipelines] fix #105 * [appveyor] fix * [azure-pipelines] fix #105 * [appveyor] fix * [azure-pipelines] fix #105 * [azure-pipelines] fix #105 * [azure-pipelines] fix #105 * [appveyor] fix * [azure-pipelines] fix #105 * [appveyor] fix * [azure-pipelines] fix #105 * [azure-pipelines] fix #105 * [appveyor] fix * [azure-pipelines] fix #105 * [appveyor] fix * [azure-pipelines] fix #105 * [appveyor] fix * [azure-pipelines] fix #105 * [appveyor] fix * [appveyor] [azure-pipelines] fix * [azure-pipelines] fix #105 * [appveyor] [azure-pipelines] fix * appveyor updatae * [appveyor] [azure-pipelines] fix * [WIP] * [azure-pipelines] add mingw (GCC on windows) * [azure-pipeline] refactor cmake gen and build steps * [azure-pipelines] split by OS. fix #96 * update README * [azure-pipelines|Analyzer] fix sonarcloud job * [azure-pipelines] sonarcloud as a job in CI * Revert "[azure-pipelines] sonarcloud as a job in CI" This reverts commit d38ce67. * [azure-pipelines] analyzer pipeline * [azure-pipeline] [TEST] monolith Analyzer stage depends on Dep. comparison with new one * [azure-pipeline] [TEST] [win|analyzer] trigger after ci pipeline complete * [azure-pipelines] all in 1 renamed to monolithic pipeline * [azure-pipelines] analyzer reverted to be triggered from GitHub * [README] add analyzer pipeline badge * update README * Apply suggestions from code review
- Loading branch information
Showing
13 changed files
with
506 additions
and
103 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
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,63 @@ | ||
trigger: | ||
branches: | ||
include: | ||
- master | ||
paths: | ||
exclude: | ||
#- .gitignore | ||
- .github/* | ||
- README.md | ||
- appveyor.yml | ||
tags: | ||
include: | ||
- '*' | ||
|
||
pr: | ||
branches: | ||
include: | ||
- master | ||
paths: | ||
exclude: | ||
#- .gitignore | ||
- .github/* | ||
- README.md | ||
- appveyor.yml | ||
- LICENSE | ||
|
||
variables: | ||
- template: variables.yml | ||
|
||
stages: | ||
- stage: Dep | ||
jobs: | ||
- job: vcpkg | ||
strategy: | ||
matrix: | ||
Win 64 bits: | ||
imageName: ${{ variables.windows_image }} | ||
TRIPLET: x64-windows | ||
ARCH: 64 | ||
pool: | ||
vmImage: $(imageName) | ||
steps: | ||
- template: templates/dep-vcpkg-steps.yml | ||
parameters: | ||
vcpkg_key_cache: $(CACHE_VCPKG_KEY) | ||
triplet: $(TRIPLET) | ||
arch: $(ARCH) | ||
|
||
- stage: Analyzer | ||
jobs: | ||
- template: 'templates/sonarcloud-job.yml' | ||
parameters: | ||
imageName: ${{ variables.windows_image }} | ||
jobName: SonarCloud_win | ||
jobDisplayName: SonarCloud (WIN) | ||
vcpkg_key_cache: $(CACHE_VCPKG_KEY) | ||
triplet: x64-windows | ||
arch: 64 | ||
build_type: Debug | ||
sonar_wrapper_url: 'https://sonarcloud.io/static/cpp/build-wrapper-win-x86.zip' | ||
build_wrapper: 'build-wrapper-win-x86\build-wrapper-win-x86-64.exe' | ||
build_wrapper_path: build/build-wrapper-win-x86 | ||
cmake_ignore_path: $(CMAKE_IGNORE_PATH_WIN) |
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,68 @@ | ||
trigger: | ||
branches: | ||
include: | ||
- master | ||
paths: | ||
exclude: | ||
#- .gitignore | ||
- .github/* | ||
- README.md | ||
- appveyor.yml | ||
tags: | ||
include: | ||
- '*' | ||
|
||
pr: | ||
branches: | ||
include: | ||
- master | ||
paths: | ||
exclude: | ||
#- .gitignore | ||
- .github/* | ||
- README.md | ||
- appveyor.yml | ||
- LICENSE | ||
|
||
variables: | ||
- template: variables.yml | ||
|
||
stages: | ||
- stage: Dep | ||
jobs: | ||
- job: vcpkg | ||
strategy: | ||
matrix: | ||
Linux: | ||
imageName: ${{ variables.linux_image }} | ||
TRIPLET: x64-linux | ||
pool: | ||
vmImage: $(imageName) | ||
steps: | ||
- template: templates/dep-vcpkg-steps.yml | ||
parameters: | ||
vcpkg_key_cache: $(CACHE_VCPKG_KEY) | ||
triplet: $(TRIPLET) | ||
arch: $(ARCH) | ||
|
||
- stage: CI | ||
jobs: | ||
- job: Linux | ||
variables: | ||
TRIPLET: x64-linux | ||
strategy: | ||
matrix: | ||
GCC Debug: | ||
CONFIGURATION: Debug | ||
GCC Release: | ||
CONFIGURATION: Release | ||
pool: | ||
vmImage: ${{ variables.linux_image }} | ||
steps: | ||
- template: 'templates/ci-steps.yml' | ||
parameters: | ||
vcpkg_key_cache: $(CACHE_VCPKG_KEY) | ||
triplet: $(TRIPLET) | ||
build_type: $(CONFIGURATION) | ||
test: false | ||
install: false |
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,67 @@ | ||
trigger: | ||
branches: | ||
include: | ||
- master | ||
paths: | ||
exclude: | ||
#- .gitignore | ||
- .github/* | ||
- README.md | ||
- appveyor.yml | ||
tags: | ||
include: | ||
- '*' | ||
|
||
pr: | ||
branches: | ||
include: | ||
- master | ||
paths: | ||
exclude: | ||
#- .gitignore | ||
- .github/* | ||
- README.md | ||
- appveyor.yml | ||
- LICENSE | ||
|
||
variables: | ||
- template: variables.yml | ||
|
||
stages: | ||
- stage: Dep | ||
jobs: | ||
- job: vcpkg | ||
strategy: | ||
matrix: | ||
MacOS: | ||
imageName: ${{ variables.mac_image }} | ||
TRIPLET: x64-osx | ||
pool: | ||
vmImage: $(imageName) | ||
steps: | ||
- template: templates/dep-vcpkg-steps.yml | ||
parameters: | ||
vcpkg_key_cache: $(CACHE_VCPKG_KEY) | ||
triplet: $(TRIPLET) | ||
arch: $(ARCH) | ||
|
||
- stage: CI | ||
jobs: | ||
- job: macOS | ||
variables: | ||
TRIPLET: x64-osx | ||
strategy: | ||
matrix: | ||
Debug: | ||
CONFIGURATION: Debug | ||
Release: | ||
CONFIGURATION: Release | ||
pool: | ||
vmImage: ${{ variables.mac_image }} | ||
steps: | ||
- template: 'templates/ci-steps.yml' | ||
parameters: | ||
vcpkg_key_cache: $(CACHE_VCPKG_KEY) | ||
triplet: $(TRIPLET) | ||
build_type: $(CONFIGURATION) | ||
install: false |
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.