Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ pr:
- PATENTS.TXT
- THIRD-PARTY-NOTICES.TXT

parameters:
- name: runTests
displayName: Run Tests
type: boolean
default: false
Comment thread
ericstj marked this conversation as resolved.

variables:
- name: _TeamName
value: dotnet-extensions
Expand Down Expand Up @@ -223,6 +229,7 @@ extends:
buildConfig: $(_BuildConfig)
repoLogPath: $(Build.Arcade.LogsPath)
repoTestResultsPath: $(Build.Arcade.TestResultsPath)
skipTests: ${{ not(parameters.runTests) }}
skipQualityGates: ${{ eq(variables['SkipQualityGates'], 'true') }}
isWindows: true

Expand Down Expand Up @@ -253,6 +260,7 @@ extends:
buildConfig: $(_BuildConfig)
repoLogPath: $(Build.Arcade.LogsPath)
repoTestResultsPath: $(Build.Arcade.TestResultsPath)
skipTests: ${{ not(parameters.runTests) }}
skipQualityGates: ${{ eq(variables['SkipQualityGates'], 'true') }}
isWindows: false

Expand Down