Skip to content

Commit

Permalink
Updated azure pipelines as recommended in dotnet/core#7950
Browse files Browse the repository at this point in the history
  • Loading branch information
oskardudycz committed Nov 11, 2022
1 parent a352a53 commit 8ea6083
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
6 changes: 4 additions & 2 deletions azure-pipelines-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ variables:
config: Release
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
dotnet_core_version: 6.0.x
dotnet_version: 7.x
node_version: 16.x
pg_db: marten_testing
marten_testing_database: "Host=localhost;Port=5432;Database=marten_testing;Username=postgres;Password=Password12!"
Expand All @@ -59,7 +59,9 @@ jobs:
- task: UseDotNet@2
displayName: Install .Net Core
inputs:
version: $(dotnet_core_version)
packageType: sdk
version: $(dotnet_version)
installationPath: $(Agent.ToolsDirectory)/dotnet
- task: NodeTool@0
displayName: Install Node.js
inputs:
Expand Down
8 changes: 5 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ variables:
disable_test_parallelization: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
dotnet_version: 6.0.x
dotnet_version: 7.x
node_version: 16.x
pg_db: marten_testing
marten_testing_database: "Host=localhost;Port=5432;Database=marten_testing;Username=postgres;Password=Password12!"
Expand Down Expand Up @@ -71,9 +71,11 @@ jobs:
postgres: $[ variables['postgresService'] ]
steps:
- task: UseDotNet@2
displayName: Install .Net Core 6.0.x
displayName: Install .Net Core 7.0.x
inputs:
version: $(dotnet_version)
packageType: sdk
version: dotnet_version
installationPath: $(Agent.ToolsDirectory)/dotnet
- task: NodeTool@0
displayName: Install Node.js
inputs:
Expand Down

0 comments on commit 8ea6083

Please sign in to comment.