Skip to content

_IsShipping should always be false #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 12, 2018
Merged
Changes from all 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
5 changes: 3 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ variables:
# clean the local repo on the build agents
Build.Repository.Clean: true

# This project only builds a transport package
_IsShipping: false

# Set some variables based on build conditions
# TODO: Remove the Build.DefinitionName check once the github repo goes public
${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest'), contains(variables['Build.DefinitionName'], 'github')) }}:
Expand All @@ -17,7 +20,6 @@ variables:
_PublishType: none
_SignType: test
_DotNetPublishToBlobFeed: false
_IsShipping: false
# else
# TODO: Remove the Build.DefinitionName check once the github repo goes public
${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest'), not(contains(variables['Build.DefinitionName'], 'github'))) }}:
Expand All @@ -26,7 +28,6 @@ variables:
_PublishType: blob
_SignType: real
_DotNetPublishToBlobFeed: true
_IsShipping: true

# only trigger ci builds for the master branch
trigger:
Expand Down