Skip to content

Add missing integration test versions #5306

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ci/make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion .ci/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ $ STACK_VERSION=7.x-SNAPSHOT ELASTICSEARCH_VERSION=7.x-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
Expand Down
2 changes: 1 addition & 1 deletion .ci/run-repository.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ param(
$NODE_NAME,

[string]
$DOTNET_VERSION = "5.0.100"
$DOTNET_VERSION = "5.0.102"
)

$ESC = [char]27
Expand Down
2 changes: 1 addition & 1 deletion .ci/run-repository.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,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-}

Expand Down
2 changes: 1 addition & 1 deletion .ci/run-tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ param (
$TEST_SUITE = "free",

[string]
$DOTNET_VERSION = "5.0.100"
$DOTNET_VERSION = "5.0.102"
)

$ESC = [char]27
Expand Down
2 changes: 1 addition & 1 deletion .ci/test-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ TEST_SUITE:
- platinum

DOTNET_VERSION:
- 5.0.100
- 5.0.102

exclude: ~
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
26 changes: 19 additions & 7 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -96,13 +96,19 @@ jobs:
es77:
esVersion: '7.7.0'
es78:
esVersion: '7.8.0-SNAPSHOT'
esVersion: '7.8.0'
es79:
esVersion: '7.9.0'
es710:
esVersion: '7.10.0'
es711:
esVersion: '7.11.0-SNAPSHOT'
latest7:
esVersion: 'latest-7'
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
Expand Down Expand Up @@ -136,13 +142,19 @@ jobs:
es77:
esVersion: '7.7.0'
es78:
esVersion: '7.8.0-SNAPSHOT'
esVersion: '7.8.0'
es79:
esVersion: '7.9.0'
es710:
esVersion: '7.10.0'
es711:
esVersion: '7.11.0-SNAPSHOT'
latest7:
esVersion: 'latest-7'
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
Expand Down