From 39aeed50f806b00d9f091cd5a6657e8ddca6e3b0 Mon Sep 17 00:00:00 2001 From: Steve Gordon Date: Fri, 5 Feb 2021 14:30:49 +0000 Subject: [PATCH] Update SDK to latest patch --- .ci/make.sh | 2 +- .ci/readme.md | 2 +- .ci/run-repository.ps1 | 2 +- .ci/run-repository.sh | 2 +- .ci/run-tests.ps1 | 2 +- .ci/test-matrix.yml | 2 +- appveyor.yml | 2 +- azure-pipelines.yml | 10 +++++----- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.ci/make.sh b/.ci/make.sh index 01589c2e89b..469920115c2 100755 --- a/.ci/make.sh +++ b/.ci/make.sh @@ -19,7 +19,7 @@ output_folder=".ci/output" OUTPUT_DIR="$repo/${output_folder}" mkdir -p "$OUTPUT_DIR" -DOTNET_VERSION=${DOTNET_VERSION-5.0.100} +DOTNET_VERSION=${DOTNET_VERSION-5.0.102} echo -e "\033[34;1mINFO:\033[0m VERSION ${STACK_VERSION}\033[0m" echo -e "\033[34;1mINFO:\033[0m OUTPUT_DIR ${OUTPUT_DIR}\033[0m" diff --git a/.ci/readme.md b/.ci/readme.md index e1389fa1a66..68d047d257b 100644 --- a/.ci/readme.md +++ b/.ci/readme.md @@ -30,7 +30,7 @@ $ STACK_VERSION=8.0.0-SNAPSHOT ./.ci/run-tests |-------------------------|-------------|-------------| | `STACK_VERSION` | `N/A` | The elasticsearch version to target | `TEST_SUITE` | `basic` | `free` or `platinum` sets which test suite to run and which container to run against. | -| `DOTNET_VERSION` | `5.0.100` | The .NET sdk version used to grab the proper container | +| `DOTNET_VERSION` | `5.0.102` | The .NET sdk version used to grab the proper container | If you want to manually spin up elasticsearch for these tests and call the runner afterwards you can use diff --git a/.ci/run-repository.ps1 b/.ci/run-repository.ps1 index 5d495a37b81..52073cd1317 100644 --- a/.ci/run-repository.ps1 +++ b/.ci/run-repository.ps1 @@ -14,7 +14,7 @@ param( $NODE_NAME, [string] - $DOTNET_VERSION = "5.0.100" + $DOTNET_VERSION = "5.0.102" ) $ESC = [char]27 diff --git a/.ci/run-repository.sh b/.ci/run-repository.sh index ada126d1fbe..7027e716e7a 100755 --- a/.ci/run-repository.sh +++ b/.ci/run-repository.sh @@ -10,7 +10,7 @@ script_path=$(dirname $(realpath -s $0)) source $script_path/functions/imports.sh set -euo pipefail -DOTNET_VERSION=${DOTNET_VERSION-5.0.100} +DOTNET_VERSION=${DOTNET_VERSION-5.0.102} ELASTICSEARCH_URL=${ELASTICSEARCH_URL-"$elasticsearch_url"} elasticsearch_container=${elasticsearch_container-} diff --git a/.ci/run-tests.ps1 b/.ci/run-tests.ps1 index 18cefe97952..de9e36c872b 100644 --- a/.ci/run-tests.ps1 +++ b/.ci/run-tests.ps1 @@ -8,7 +8,7 @@ param ( $TEST_SUITE = "free", [string] - $DOTNET_VERSION = "5.0.100" + $DOTNET_VERSION = "5.0.102" ) $ESC = [char]27 diff --git a/.ci/test-matrix.yml b/.ci/test-matrix.yml index e80e9e054cc..9a1159a1ca3 100755 --- a/.ci/test-matrix.yml +++ b/.ci/test-matrix.yml @@ -8,6 +8,6 @@ TEST_SUITE: - platinum DOTNET_VERSION: - - 5.0.100 + - 5.0.102 exclude: ~ diff --git a/appveyor.yml b/appveyor.yml index 4949072024a..2954c2bd1d9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,7 +6,7 @@ environment: DOTNET_CLI_TELEMETRY_OPTOUT: true DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true install: - - cmd: choco install dotnet-5.0-sdk --version 5.0.100 + - cmd: choco install dotnet-5.0-sdk --version 5.0.102 build_script: - cmd: build.bat canary diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a6f87fa79a2..e832e5bd3e2 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -18,7 +18,7 @@ jobs: steps: - task: UseDotNet@2 inputs: - version: '5.0.100' + version: '5.0.102' - script: ./build.sh documentation displayName: 'Generate Documentation' - script: | @@ -30,7 +30,7 @@ jobs: steps: - task: UseDotNet@2 inputs: - version: '5.0.100' + version: '5.0.102' - script: ./build.sh test-one displayName: 'build and unit test' - task: PublishTestResults@2 @@ -62,7 +62,7 @@ jobs: steps: - task: UseDotNet@2 inputs: - version: '5.0.100' + version: '5.0.102' - script: build.bat canary displayName: 'build and unit test' - task: PublishTestResults@2 @@ -84,7 +84,7 @@ jobs: steps: - task: UseDotNet@2 inputs: - version: '5.0.100' + version: '5.0.102' - script: 'build.bat integrate-one $(esVersion) "readonly,writable,bool,xpack"' displayName: '$(esVersion) windows integration tests' - task: PublishTestResults@2 @@ -106,7 +106,7 @@ jobs: steps: - task: UseDotNet@2 inputs: - version: '5.0.100' + version: '5.0.102' - script: './build.sh integrate-one $(esVersion) "readonly,writable"' displayName: '$(esVersion) linux integration tests' - task: PublishTestResults@2