Skip to content

Commit

Permalink
Merge pull request #99 from twsouthwick/build
Browse files Browse the repository at this point in the history
Fix tabs in build yml
  • Loading branch information
Sweekriti91 committed Jul 25, 2019
2 parents 062aae3 + 2205408 commit cdea9bf
Showing 1 changed file with 23 additions and 15 deletions.
38 changes: 23 additions & 15 deletions build/build-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,29 @@ stages:
version: 3.0.100-preview7-012821
includePreviewVersions: true
installationPath: $(Agent.ToolsDirectory)/dotnet
- task: DotNetCoreCLI@2
inputs:
command: 'build'
projects: 'HotUI.Blazor.sln'
arguments: '-c $(BuildConfiguration)'
- task: DotNetCoreCLI@2
inputs:
command: 'test'
projects: 'HotUI.Blazor.sln'
arguments: '-c $(BuildConfiguration)'
- task: DotNetCoreCLI@2
inputs:
command: 'pack'
projects: 'HotUI.Blazor.sln'
arguments: '-c $(BuildConfiguration)'
- task: DotNetCoreCLI@2
inputs:
command: 'build'
projects: 'HotUI.Blazor.sln'
arguments: '-c $(BuildConfiguration)'
- task: DotNetCoreCLI@2
inputs:
command: 'test'
projects: 'HotUI.Blazor.sln'
arguments: '-c $(BuildConfiguration)'
- task: DotNetCoreCLI@2
inputs:
command: 'pack'
projects: 'HotUI.Blazor.sln'
arguments: '-c $(BuildConfiguration)'
- task: CopyFiles@2
inputs:
sourceFolder: '$(Build.SourcesDirectory)'
contents: '**/$(BuildConfiguration)/**/*.nupkg'
- task: PublishBuildArtifacts@1
inputs:
pathtoPublish: '$(Build.ArtifactStagingDirectory)'
artifactName: drop

- job: BuildHotUIMac
displayName: Build HotUI Mac
Expand Down

0 comments on commit cdea9bf

Please sign in to comment.