Skip to content

Commit 2d253fa

Browse files
authored
Add missing integration test versions (#5306)
- Update .NET SDK to latest 5.1.102
1 parent c300d6a commit 2d253fa

File tree

8 files changed

+26
-14
lines changed

8 files changed

+26
-14
lines changed

.ci/make.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ output_folder=".ci/output"
1919
OUTPUT_DIR="$repo/${output_folder}"
2020
mkdir -p "$OUTPUT_DIR"
2121

22-
DOTNET_VERSION=${DOTNET_VERSION-5.0.100}
22+
DOTNET_VERSION=${DOTNET_VERSION-5.0.102}
2323

2424
echo -e "\033[34;1mINFO:\033[0m VERSION ${STACK_VERSION}\033[0m"
2525
echo -e "\033[34;1mINFO:\033[0m OUTPUT_DIR ${OUTPUT_DIR}\033[0m"

.ci/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ $ STACK_VERSION=7.x-SNAPSHOT ELASTICSEARCH_VERSION=7.x-SNAPSHOT ./.ci/run-tests
3030
|-------------------------|-------------|-------------|
3131
| `STACK_VERSION` | `N/A` | The elasticsearch version to target
3232
| `TEST_SUITE` | `basic` | `free` or `platinum` sets which test suite to run and which container to run against. |
33-
| `DOTNET_VERSION` | `5.0.100` | The .NET sdk version used to grab the proper container |
33+
| `DOTNET_VERSION` | `5.0.102` | The .NET sdk version used to grab the proper container |
3434

3535

3636
If you want to manually spin up elasticsearch for these tests and call the runner afterwards you can use

.ci/run-repository.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ param(
1414
$NODE_NAME,
1515

1616
[string]
17-
$DOTNET_VERSION = "5.0.100"
17+
$DOTNET_VERSION = "5.0.102"
1818
)
1919

2020
$ESC = [char]27

.ci/run-repository.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ script_path=$(dirname $(realpath -s $0))
99
source $script_path/functions/imports.sh
1010
set -euo pipefail
1111

12-
DOTNET_VERSION=${DOTNET_VERSION-5.0.100}
12+
DOTNET_VERSION=${DOTNET_VERSION-5.0.102}
1313
ELASTICSEARCH_URL=${ELASTICSEARCH_URL-"$elasticsearch_url"}
1414
elasticsearch_container=${elasticsearch_container-}
1515

.ci/run-tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ param (
88
$TEST_SUITE = "free",
99

1010
[string]
11-
$DOTNET_VERSION = "5.0.100"
11+
$DOTNET_VERSION = "5.0.102"
1212
)
1313

1414
$ESC = [char]27

.ci/test-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ TEST_SUITE:
88
- platinum
99

1010
DOTNET_VERSION:
11-
- 5.0.100
11+
- 5.0.102
1212

1313
exclude: ~

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ environment:
66
DOTNET_CLI_TELEMETRY_OPTOUT: true
77
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
88
install:
9-
- cmd: choco install dotnet-5.0-sdk --version 5.0.100
9+
- cmd: choco install dotnet-5.0-sdk --version 5.0.102
1010
build_script:
1111
- cmd: build.bat canary
1212

azure-pipelines.yml

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- task: UseDotNet@2
2020
inputs:
21-
version: '5.0.100'
21+
version: '5.0.102'
2222
- script: ./build.sh documentation
2323
displayName: 'Generate Documentation'
2424
- script: |
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131
- task: UseDotNet@2
3232
inputs:
33-
version: '5.0.100'
33+
version: '5.0.102'
3434
- script: ./build.sh test-one
3535
displayName: 'build and unit test'
3636
- task: PublishTestResults@2
@@ -62,7 +62,7 @@ jobs:
6262
steps:
6363
- task: UseDotNet@2
6464
inputs:
65-
version: '5.0.100'
65+
version: '5.0.102'
6666
- script: build.bat canary
6767
displayName: 'build and unit test'
6868
- task: PublishTestResults@2
@@ -96,13 +96,19 @@ jobs:
9696
es77:
9797
esVersion: '7.7.0'
9898
es78:
99-
esVersion: '7.8.0-SNAPSHOT'
99+
esVersion: '7.8.0'
100+
es79:
101+
esVersion: '7.9.0'
102+
es710:
103+
esVersion: '7.10.0'
104+
es711:
105+
esVersion: '7.11.0-SNAPSHOT'
100106
latest7:
101107
esVersion: 'latest-7'
102108
steps:
103109
- task: UseDotNet@2
104110
inputs:
105-
version: '5.0.100'
111+
version: '5.0.102'
106112
- script: 'build.bat integrate-one $(esVersion) "readonly,writable,bool,xpack"'
107113
displayName: '$(esVersion) windows integration tests'
108114
- task: PublishTestResults@2
@@ -136,13 +142,19 @@ jobs:
136142
es77:
137143
esVersion: '7.7.0'
138144
es78:
139-
esVersion: '7.8.0-SNAPSHOT'
145+
esVersion: '7.8.0'
146+
es79:
147+
esVersion: '7.9.0'
148+
es710:
149+
esVersion: '7.10.0'
150+
es711:
151+
esVersion: '7.11.0-SNAPSHOT'
140152
latest7:
141153
esVersion: 'latest-7'
142154
steps:
143155
- task: UseDotNet@2
144156
inputs:
145-
version: '5.0.100'
157+
version: '5.0.102'
146158
- script: './build.sh integrate-one $(esVersion) "readonly,writable"'
147159
displayName: '$(esVersion) linux integration tests'
148160
- task: PublishTestResults@2

0 commit comments

Comments
 (0)