Skip to content

Commit

Permalink
Merge pull request #819 from dotnet/bump-to-411
Browse files Browse the repository at this point in the history
Bump to 411
  • Loading branch information
Oren Novotny authored Oct 1, 2018
2 parents 57bcb6e + 44ef422 commit aeaf0e8
Show file tree
Hide file tree
Showing 7 changed files with 55 additions and 97 deletions.
29 changes: 0 additions & 29 deletions .vsts.ix-ci.yml

This file was deleted.

9 changes: 0 additions & 9 deletions .vsts.ix-pr.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .vsts.rx-ci.yml

This file was deleted.

10 changes: 0 additions & 10 deletions .vsts.rx-pr.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Rx.NET/Source/version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "4.1.0",
"version": "4.1.1",
"publicReleaseRefSpec": [
"^refs/heads/master$", // we release out of master
"^refs/heads/rel/v\\d+\\.\\d+" // we also release branches starting with rel/vN.N
Expand Down
36 changes: 27 additions & 9 deletions .vsts.ix-shared.yml → azure-pipelines.ix.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
parameters:
signStep: []

trigger:
branches:
include:
- master
- rel/*
paths:
include:
- Ix.NET/Source/*
- .editorconfig
- azure-pipelines.ix.yml

pool:
vmImage: vs2017-win2016

variables:
BuildConfiguration: Release

steps:
- task: DotNetCoreCLI@2
inputs:
Expand All @@ -13,10 +27,6 @@ steps:
- script: nbgv cloud -p Ix.NET\Source
displayName: Set Version
condition: and(succeeded(), eq(variables['system.pullrequest.isfork'], false))

- task: DotNetCoreInstaller@0
inputs:
version: '2.1.400-preview-009171'

- task: DotNetCoreCLI@2
inputs:
Expand All @@ -34,11 +44,19 @@ steps:
arguments: -c $(BuildConfiguration) --collect:"Code Coverage" -s $(System.DefaultWorkingDirectory)/Ix.NET/Source/CodeCoverage.runsettings /p:DebugType=Full
displayName: Run Tests

- ${{ parameters.signStep }}
- task: PowerShell@2
displayName: Authenticode Sign Packages
inputs:
filePath: Ix.NET/Source/build/Sign-Package.ps1
env:
SignClientUser: $(SignClientUser)
SignClientSecret: $(SignClientSecret)
ArtifactDirectory: $(Build.ArtifactStagingDirectory)\artifacts
condition: and(succeeded(), not(eq(variables['build.reason'], 'PullRequest')), not(eq(variables['SignClientSecret'], '')), not(eq(variables['SignClientUser'], '')))

- task: PublishBuildArtifacts@1
inputs:
PathtoPublish: $(Build.ArtifactStagingDirectory)\artifacts
ArtifactName: artifacts
publishLocation: Container
condition: eq(variables['system.pullrequest.isfork'], false)
condition: and(succeeded(), eq(variables['system.pullrequest.isfork'], false))
35 changes: 27 additions & 8 deletions .vsts.rx-shared.yml → azure-pipelines.rx.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
parameters:
signStep: []
trigger:
branches:
include:
- master
- rel/*
paths:
include:
- Rx.NET/Source/*
- .editorconfig
- azure-pipelines.rx.yml

pool:
vmImage: vs2017-win2016

variables:
BuildConfiguration: Release
BuildPlatform: Any CPU

steps:
- task: DotNetCoreCLI@2
Expand All @@ -13,10 +28,6 @@ steps:
- script: nbgv cloud -a -p Rx.NET\Source
displayName: Set Version
condition: and(succeeded(), eq(variables['system.pullrequest.isfork'], false))

- task: DotNetCoreInstaller@0
inputs:
version: '2.1.400-preview-009171'

- task: MSBuild@1
displayName: Build System.Reactive.sln
Expand Down Expand Up @@ -57,11 +68,19 @@ steps:
arguments: -c $(BuildConfiguration) --no-build --no-restore
displayName: Run Api Approvals Tests

- ${{ parameters.signStep }}
- task: PowerShell@2
displayName: Authenticode Sign Packages
inputs:
filePath: Rx.NET/Source/build/Sign-Package.ps1
env:
SignClientUser: $(SignClientUser)
SignClientSecret: $(SignClientSecret)
ArtifactDirectory: $(Build.ArtifactStagingDirectory)\artifacts
condition: and(succeeded(), not(eq(variables['build.reason'], 'PullRequest')), not(eq(variables['SignClientSecret'], '')), not(eq(variables['SignClientUser'], '')))

- task: PublishBuildArtifacts@1
inputs:
PathtoPublish: $(Build.ArtifactStagingDirectory)\artifacts
ArtifactName: artifacts
publishLocation: Container
condition: eq(variables['system.pullrequest.isfork'], false)
condition: and(succeeded(), eq(variables['system.pullrequest.isfork'], false))

0 comments on commit aeaf0e8

Please sign in to comment.