зеркало из https://github.com/Azure/c-logging.git
183 строки
5.4 KiB
YAML
183 строки
5.4 KiB
YAML
name: $(BuildID)_$(BuildDefinitionName)_$(SourceBranchName)_$(Date:yyyyMMdd)$(Rev:.r)
|
|
|
|
resources:
|
|
repositories:
|
|
- repository: self
|
|
clean: true
|
|
- repository: c_build_tools
|
|
type: github
|
|
name: azure/c-build-tools
|
|
endpoint: github.com_azure
|
|
ref: refs/heads/master
|
|
|
|
jobs:
|
|
- template: /pipeline_templates/build_all_flavors.yml@c_build_tools
|
|
|
|
- template: /pipeline_templates/codeql3000_default.yml@c_build_tools
|
|
|
|
- job: windowsx64etwperf
|
|
displayName: 'Run Windows x64 RelWithDebInfo ETW Perf tests'
|
|
pool:
|
|
name: Azure-MessagingStore-WinBuildPoolVS2022_0
|
|
demands:
|
|
- Cmd
|
|
- msbuild
|
|
- cmake
|
|
- visualstudio
|
|
- vstest
|
|
|
|
steps:
|
|
- task: BatchScript@1
|
|
displayName: 'Git submodule update'
|
|
inputs:
|
|
filename: 'C:\Program Files\Git\bin\git.exe'
|
|
arguments: 'submodule update --init --force'
|
|
|
|
- task: BatchScript@1
|
|
displayName: 'Git submodule clean'
|
|
inputs:
|
|
filename: 'C:\Program Files\Git\bin\git.exe'
|
|
arguments: 'submodule foreach --recursive "git clean -xdff"'
|
|
|
|
- task: BatchScript@1
|
|
displayName: 'Git clean'
|
|
inputs:
|
|
filename: 'C:\Program Files\Git\bin\git.exe'
|
|
arguments: 'clean -xdff'
|
|
|
|
- task: BatchScript@1
|
|
displayName: 'Setup VS Vars'
|
|
inputs:
|
|
filename: '"c:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\VsDevCmd.bat"'
|
|
modifyEnvironment: true
|
|
|
|
- task: CMake@1
|
|
displayName: 'CMake .. -Drun_perf_tests:bool=ON -Dlog_sink_etw:bool=ON -Dlog_sink_console:bool=OFF -Duse_etw:string=TRACELOGGING -G "Visual Studio 17 2022" -A x64'
|
|
inputs:
|
|
workingDirectory: 'build_x64'
|
|
cmakeArgs: '.. -Drun_perf_tests:bool=ON -Dlog_sink_etw:bool=ON -Dlog_sink_console:bool=OFF -Duse_etw:string=TRACELOGGING -G "Visual Studio 17 2022" -A x64'
|
|
|
|
- task: VSBuild@1
|
|
displayName: 'Build solution build_x64\*.sln'
|
|
inputs:
|
|
solution: 'build_x64\*.sln'
|
|
platform: x64
|
|
msbuildArgs: '/t:restore /t:build'
|
|
configuration: RelWithDebInfo
|
|
maximumCpuCount: true
|
|
|
|
- task: CmdLine@1
|
|
displayName: 'Run ctest'
|
|
inputs:
|
|
filename: ctest
|
|
arguments: '-C "RelWithDebInfo" -V --output-on-failure'
|
|
workingFolder: 'build_x64'
|
|
|
|
- task: PublishBuildArtifacts@1
|
|
displayName: 'Publish artifacts'
|
|
inputs:
|
|
pathtoPublish: 'build_x64'
|
|
artifactName: 'x64_RelWithDebInfo_perf'
|
|
parallel: true
|
|
condition: failed()
|
|
|
|
- job: linuxubuntu
|
|
displayName: 'Build Linux Ubuntu'
|
|
pool:
|
|
name: Azure-MsgStore-Linux2204BuildMachinePool
|
|
demands:
|
|
- linux
|
|
|
|
steps:
|
|
- bash: |
|
|
pushd $(Build.Repository.LocalPath)
|
|
git submodule update --init
|
|
git submodule foreach --recursive "git clean -xdff"
|
|
git clean -xdff
|
|
popd
|
|
workingDirectory: '$(Build.Repository.LocalPath)'
|
|
displayName: 'git submodule update and clean'
|
|
|
|
- task: Bash@3
|
|
displayName: 'Build and run tests'
|
|
inputs:
|
|
targetType: filePath
|
|
filePath: './build/linux/build_linux.sh'
|
|
arguments: '$(Build.Repository.LocalPath)'
|
|
workingDirectory: '$(Build.Repository.LocalPath)'
|
|
|
|
# Will be re-enabled at a later time
|
|
#- job: includecheck
|
|
# pool:
|
|
# name: Azure-MessagingStore
|
|
# demands:
|
|
# - Build
|
|
# - Cmd
|
|
# - msbuild
|
|
# - cmake
|
|
# - visualstudio
|
|
#
|
|
# steps:
|
|
# - task: BatchScript@1
|
|
# displayName: 'Git submodule update'
|
|
# inputs:
|
|
# filename: 'C:\Program Files\Git\bin\git.exe'
|
|
# arguments: 'submodule update --init --force'
|
|
#
|
|
# - task: BatchScript@1
|
|
# displayName: 'Git submodule clean'
|
|
# inputs:
|
|
# filename: 'C:\Program Files\Git\bin\git.exe'
|
|
# arguments: 'submodule foreach --recursive "git clean -xdff"'
|
|
#
|
|
# - task: BatchScript@1
|
|
# displayName: 'Git clean'
|
|
# inputs:
|
|
# filename: 'C:\Program Files\Git\bin\git.exe'
|
|
# arguments: 'clean -xdff'
|
|
#
|
|
# - task: BatchScript@1
|
|
# displayName: 'Setup VS Vars'
|
|
# inputs:
|
|
# filename: '"c:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsDevCmd.bat"'
|
|
# modifyEnvironment: true
|
|
#
|
|
# - task: CMake@1
|
|
# displayName: 'Running cmake'
|
|
# inputs:
|
|
# workingDirectory: 'build_ninja'
|
|
# cmakeArgs: '.. -GNinja -DCMAKE_C_INCLUDE_WHAT_YOU_USE:UNINITIALIZED=include-what-you-use;-Xiwyu;--mapping_file=../deps/c-build-tools/iwyu/rules.imp;--driver-mode=cl -DCMAKE_CXX_INCLUDE_WHAT_YOU_USE:UNINITIALIZED=include-what-you-use;-Xiwyu;--mapping_file=../deps/c-build-tools/iwyu/rules.imp;--driver-mode=cl -Drun_unittests:bool=ON -Drun_int_tests:bool=ON -Drun_perf_tests:bool=ON'
|
|
#
|
|
# - task: PowerShell@2
|
|
# displayName: 'Build solution and check includes'
|
|
# inputs:
|
|
# workingDirectory: 'build_ninja'
|
|
# targetType: 'inline'
|
|
# script: |
|
|
# cmake --build . | tee build.log
|
|
# if ((Select-String -Path "./build.log" -Pattern "Warning:") -ne $null) { throw "include check failed" }
|
|
|
|
- job: includecheck_linux
|
|
pool:
|
|
name: Azure-MessagingStore-LinuxBuildMachinePool
|
|
demands:
|
|
- linux
|
|
|
|
steps:
|
|
- bash: |
|
|
pushd $(Build.Repository.LocalPath)
|
|
git submodule update --init
|
|
git submodule foreach --recursive "git clean -xdff"
|
|
git clean -xdff
|
|
popd
|
|
workingDirectory: '$(Build.Repository.LocalPath)'
|
|
displayName: 'git submodule update and clean'
|
|
|
|
- task: Bash@3
|
|
displayName: 'Build with iwyu'
|
|
inputs:
|
|
targetType: filePath
|
|
filePath: './build/linux/build_linux_iwyu.sh'
|
|
arguments: '$(Build.Repository.LocalPath)'
|
|
workingDirectory: '$(Build.Repository.LocalPath)'
|