mirror of
https://github.com/microsoft/DirectXMath
synced 2024-11-08 13:40:09 +00:00
148 lines
3.9 KiB
YAML
148 lines
3.9 KiB
YAML
# Copyright (c) Microsoft Corporation.
|
|
# Licensed under the MIT License.
|
|
#
|
|
# http://go.microsoft.com/fwlink/?LinkID=615560
|
|
|
|
# Runs various SDL recommended tools on the code.
|
|
|
|
schedules:
|
|
- cron: "0 3 * * 0,3,5"
|
|
displayName: 'Three times a week'
|
|
branches:
|
|
include:
|
|
- main
|
|
always: true
|
|
|
|
# GitHub Actions handles CodeQL and PREFAST for CI/PR
|
|
trigger: none
|
|
pr:
|
|
branches:
|
|
include:
|
|
- main
|
|
paths:
|
|
include:
|
|
- build/DirectXMath-SDL.yml
|
|
|
|
resources:
|
|
repositories:
|
|
- repository: self
|
|
type: git
|
|
ref: refs/heads/main
|
|
- repository: testRepo
|
|
name: walbourn/directxmathtest
|
|
type: github
|
|
endpoint: microsoft
|
|
ref: refs/heads/main
|
|
|
|
name: $(Year:yyyy).$(Month).$(DayOfMonth)$(Rev:.r)
|
|
|
|
variables:
|
|
Codeql.Enabled: true
|
|
Codeql.Language: cpp
|
|
VC_PATH: 'C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC'
|
|
VS_GENERATOR: 'Visual Studio 17 2022'
|
|
|
|
pool:
|
|
vmImage: windows-2022
|
|
|
|
jobs:
|
|
- job: SDL_BUILD
|
|
displayName: 'Build using required SDL tools'
|
|
workspace:
|
|
clean: all
|
|
steps:
|
|
- checkout: self
|
|
clean: true
|
|
fetchTags: false
|
|
fetchDepth: 1
|
|
path: 's'
|
|
- checkout: testRepo
|
|
displayName: Fetch Tests
|
|
clean: true
|
|
fetchTags: false
|
|
fetchDepth: 1
|
|
path: 's/Tests'
|
|
- task: NodeTool@0
|
|
displayName: 'NPM install'
|
|
inputs:
|
|
versionSpec: 14.x
|
|
- task: securedevelopmentteam.vss-secure-development-tools.build-task-credscan.CredScan@3
|
|
displayName: 'Run Credential Scanner'
|
|
inputs:
|
|
debugMode: false
|
|
folderSuppression: false
|
|
- task: PoliCheck@2
|
|
displayName: 'Run PoliCheck'
|
|
inputs:
|
|
result: PoliCheck.xml
|
|
- task: Armory@2
|
|
displayName: Run ARMory
|
|
- task: CMake@1
|
|
displayName: 'CMake (MSVC): Config x64'
|
|
inputs:
|
|
cwd: '$(Build.SourcesDirectory)/Tests/headertest'
|
|
cmakeArgs: '-G "$(VS_GENERATOR)" -A x64 -B out'
|
|
- task: CodeQL3000Init@0
|
|
inputs:
|
|
Enabled: true
|
|
- task: VSBuild@1
|
|
displayName: 'Build C++ with CodeQL'
|
|
inputs:
|
|
solution: '$(Build.SourcesDirectory)/Tests/headertest/out/headertest.sln'
|
|
vsVersion: 17.0
|
|
platform: x64
|
|
configuration: Release
|
|
msbuildArchitecture: x64
|
|
- task: CodeQL3000Finalize@0
|
|
condition: always()
|
|
- task: securedevelopmentteam.vss-secure-development-tools.build-task-postanalysis.PostAnalysis@2
|
|
displayName: 'Post Analysis'
|
|
inputs:
|
|
GdnBreakAllTools: true
|
|
GdnBreakPolicy: 'Microsoft'
|
|
GdnBreakPolicyMinSev: 'Error'
|
|
- task: ComponentGovernanceComponentDetection@0
|
|
displayName: Component Detection
|
|
|
|
- job: VC_PREFAST
|
|
displayName: 'Build using /analyze (PREFAST)'
|
|
workspace:
|
|
clean: all
|
|
steps:
|
|
- checkout: self
|
|
clean: true
|
|
fetchTags: false
|
|
fetchDepth: 1
|
|
path: 's'
|
|
- checkout: testRepo
|
|
displayName: Fetch Tests
|
|
clean: true
|
|
fetchTags: false
|
|
fetchDepth: 1
|
|
path: 's/Tests'
|
|
- task: CmdLine@2
|
|
displayName: Setup environment for CMake to use VS
|
|
inputs:
|
|
script: |
|
|
call "$(VC_PATH)\Auxiliary\Build\vcvars64.bat"
|
|
echo ##vso[task.setvariable variable=WindowsSdkVerBinPath;]%WindowsSdkVerBinPath%
|
|
echo ##vso[task.prependpath]%VSINSTALLDIR%Common7\IDE\CommonExtensions\Microsoft\CMake\Ninja
|
|
echo ##vso[task.prependpath]%VCINSTALLDIR%Tools\Llvm\x64\bin
|
|
echo ##vso[task.prependpath]%WindowsSdkBinPath%x64
|
|
echo ##vso[task.prependpath]%WindowsSdkVerBinPath%x64
|
|
echo ##vso[task.prependpath]%VCToolsInstallDir%bin\Hostx64\x64
|
|
echo ##vso[task.setvariable variable=EXTERNAL_INCLUDE;]%EXTERNAL_INCLUDE%
|
|
echo ##vso[task.setvariable variable=INCLUDE;]%INCLUDE%
|
|
echo ##vso[task.setvariable variable=LIB;]%LIB%
|
|
|
|
- task: CMake@1
|
|
displayName: CMake Config
|
|
inputs:
|
|
cwd: '$(Build.SourcesDirectory)/Tests/headertest'
|
|
cmakeArgs: --preset=x64-Debug -DENABLE_CODE_ANALYSIS=ON
|
|
- task: CMake@1
|
|
displayName: CMake Build
|
|
inputs:
|
|
cwd: '$(Build.SourcesDirectory)/Tests/headertest'
|
|
cmakeArgs: --build out/build/x64-Debug
|