Skip to content

Commit

Permalink
Improvements to CI pipeline (microsoft#1415)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcooley committed Oct 28, 2020
1 parent 13d8b04 commit 1af6b28
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 10 deletions.
4 changes: 1 addition & 3 deletions build/pipelines/templates/build-app-internal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,9 @@ jobs:
variables:
BuildConfiguration: Release
BuildPlatform: ${{ parameters.platform }}
workspace:
clean: outputs
steps:
- checkout: self
clean: true
fetchDepth: 1

- task: UniversalPackages@0
displayName: Download internals package
Expand Down
4 changes: 1 addition & 3 deletions build/pipelines/templates/build-app-public.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,8 @@ jobs:
variables:
BuildConfiguration: Release
BuildPlatform: ${{ parameters.platform }}
workspace:
clean: outputs
steps:
- checkout: self
clean: true
fetchDepth: 1

- template: ./build-single-architecture.yaml
1 change: 0 additions & 1 deletion build/pipelines/templates/build-single-architecture.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ steps:
msbuildArgs: /bl:$(Build.BinariesDirectory)\$(BuildConfiguration)\$(BuildPlatform)\Calculator.binlog /p:OutDir=$(Build.BinariesDirectory)\$(BuildConfiguration)\$(BuildPlatform)\ /p:GenerateProjectSpecificOutputFolder=true /p:AppVersion=$(Build.BuildNumber) /t:Publish /p:PublishDir=$(Build.BinariesDirectory)\$(BuildConfiguration)\$(BuildPlatform)\publish\ ${{ parameters.extraMsBuildArgs }}
platform: $(BuildPlatform)
configuration: $(BuildConfiguration)
clean: true
maximumCpuCount: true

- task: PublishBuildArtifacts@1
Expand Down
4 changes: 1 addition & 3 deletions build/pipelines/templates/package-appxbundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,11 @@ jobs:
)
pool:
vmImage: windows-2019
workspace:
clean: outputs
variables:
skipComponentGovernanceDetection: true
steps:
- checkout: self
clean: true
fetchDepth: 1

- task: DownloadBuildArtifacts@0
displayName: Download all .appx artifacts
Expand Down

0 comments on commit 1af6b28

Please sign in to comment.