Skip to content
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

[build] Override default yaml checkout behavior #3157

Merged
merged 1 commit into from
Jun 1, 2019
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
12 changes: 12 additions & 0 deletions build-tools/automation/azure-pipelines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ stages:
timeoutInMinutes: 60
cancelTimeoutInMinutes: 5
steps:
- checkout: self
clean: true
submodules: recursive

# Ensure the correct Mono.Cecil reference overrides are set before creating the bundle.
- script: make prepare-props V=1 CONFIGURATION=$(XA.Build.Configuration) MSBUILD_ARGS="$(AutoProvisionArgs) $(MSBuildAbiArgs)"
displayName: make prepare-props
Expand Down Expand Up @@ -76,6 +80,10 @@ stages:
variables:
JAVA_HOME: /Library/Java/JavaVirtualMachines/jdk1.8.0_144.jdk/Contents/Home/
steps:
- checkout: self
clean: true
submodules: recursive

- task: DownloadPipelineArtifact@1
inputs:
artifactName: $(BundleArtifactName)
Expand Down Expand Up @@ -142,6 +150,10 @@ stages:
timeoutInMinutes: 360
cancelTimeoutInMinutes: 5
steps:
- checkout: self
clean: true
submodules: recursive

- task: DownloadPipelineArtifact@1
inputs:
artifactName: $(BundleArtifactName)
Expand Down