Skip to content

Commit

Permalink
Bump System.Io.Pipelines from 6.0.1 to 6.0.2 (#1703)
Browse files Browse the repository at this point in the history
* Bump System.Io.Pipelines from 6.0.1 to 6.0.2
* Fix the fast PR build

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Martin Regen <mregen@microsoft.com>
  • Loading branch information
dependabot[bot] and mregen committed Feb 10, 2022
1 parent 5b3adf7 commit a7b5611
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Stack/Opc.Ua.Bindings.Https/Opc.Ua.Bindings.Https.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets" Version="2.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel.Https" Version="2.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.1.22" />
<PackageReference Include="System.Io.Pipelines" Version="6.0.1" />
<PackageReference Include="System.Io.Pipelines" Version="6.0.2" />
<PackageReference Include="System.Text.Encodings.Web" Version="6.0.0" />
</ItemGroup>
</Otherwise>
Expand Down
16 changes: 8 additions & 8 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ pr:
- '*'

variables:
FullBuild: $[or(ne(variables['Build.Reason'], 'PullRequest'), eq( variables['LOCALPR'], ''))]
FullBuild: ${{ or(ne(variables['Build.Reason'], 'PullRequest'), ne(variables['System.PullRequest.IsFork'], 'False')) }}

stages:
- stage: build
displayName: 'Build .Net Core Samples'
displayName: 'Build .NET Core Samples'
jobs:
- template: .azurepipelines/ci.yml
- stage: buildnohttps
dependsOn: []
displayName: 'Build NoHttps .Net Core Samples'
condition: and(succeeded(), eq(variables.FullBuild, 'true'))
displayName: 'Build NoHttps .NET Core Samples'
condition: ne(variables.FullBuild, 'False')
jobs:
- template: .azurepipelines/ci.yml
parameters:
Expand All @@ -55,7 +55,7 @@ stages:
- stage: testrelease
dependsOn: [build]
displayName: 'Test Core and SDK Release'
condition: and(succeeded(), eq(variables.FullBuild, 'true'))
condition: and(succeeded(), ne(variables.FullBuild, 'False'))
jobs:
- template: .azurepipelines/test.yml
parameters:
Expand All @@ -77,7 +77,7 @@ stages:
- stage: testreleasepr
dependsOn: []
displayName: 'Fast PR Test Core and SDK Release'
condition: and(succeeded(), ne(variables.FullBuild, 'true'))
condition: eq(variables.FullBuild, 'False')
jobs:
- template: .azurepipelines/test.yml
parameters:
Expand All @@ -88,7 +88,7 @@ stages:
- stage: testdebug
dependsOn: [build]
displayName: 'Test Core and SDK Debug'
condition: and(succeeded(), eq(variables.FullBuild, 'true'))
condition: and(succeeded(), ne(variables.FullBuild, 'False'))
jobs:
- template: .azurepipelines/test.yml
parameters:
Expand All @@ -97,7 +97,7 @@ stages:
- stage: coverage
dependsOn: [testdebug,testrelease]
displayName: 'Code Coverage'
condition: and(succeeded(), eq(variables.FullBuild, 'true'))
condition: and(succeeded(), ne(variables.FullBuild, 'False'))
jobs:
- template: .azurepipelines/testcc.yml
parameters:
Expand Down

0 comments on commit a7b5611

Please sign in to comment.