cloudflare/Azure-Sentinel
Publicmirrored fromhttps://github.com/cloudflare/Azure-Sentinel
.azure-pipelines/kqlValidations.yaml
19lines · modecode
| 1 | jobs: |
| 2 | - job: "KqlValidations" |
| 3 | pool: |
| 4 | vmImage: 'ubuntu-18.04' |
| 5 | variables: |
| 6 | buildConfiguration: 'Release' |
| 7 | dotnetSdkVersion: '3.1.401' |
| 8 | steps: |
| 9 | - task: UseDotNet@2 |
| 10 | displayName: 'Use .NET Core SDK $(dotnetSdkVersion)' |
| 11 | inputs: |
| 12 | version: '$(dotnetSdkVersion)' |
| 13 | - task: DotNetCoreCLI@2 |
| 14 | displayName: 'Run kql validation tests' |
| 15 | inputs: |
| 16 | command: 'test' |
| 17 | arguments: '--configuration $(buildConfiguration)' |
| 18 | publishTestResults: true |
| 19 | projects: '**/Kqlvalidations.Tests.csproj' |