File tree Expand file tree Collapse file tree 18 files changed +45
-45
lines changed Expand file tree Collapse file tree 18 files changed +45
-45
lines changed Original file line number Diff line number Diff line change 1- ARG DOTNET_VERSION=8.0.100
1+ ARG DOTNET_VERSION=8.0.400
22FROM mcr.microsoft.com/dotnet/sdk:${DOTNET_VERSION} AS elasticsearch-net-build
33
44ENV NUGET_SCRATCH="/tmp/NuGetScratch"
Original file line number Diff line number Diff line change 55 env :
66 TEST_SUITE : " {{ matrix.suite }}"
77 STACK_VERSION : master-SNAPSHOT
8- DOTNET_VERSION : 8.0.100
8+ DOTNET_VERSION : 8.0.400
99 matrix :
1010 setup :
1111 suite :
Original file line number Diff line number Diff line change 1414 $NODE_NAME ,
1515
1616 [string ]
17- $DOTNET_VERSION = " 8.0.100 "
17+ $DOTNET_VERSION = " 8.0.400 "
1818)
1919
2020$ESC = [char ]27
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ script_path=$(dirname $(realpath -s $0))
99source $script_path /functions/imports.sh
1010set -euo pipefail
1111
12- DOTNET_VERSION=${DOTNET_VERSION-8.0.100 }
12+ DOTNET_VERSION=${DOTNET_VERSION-8.0.400 }
1313ELASTICSEARCH_URL=${ELASTICSEARCH_URL-" $elasticsearch_url " }
1414elasticsearch_container=${elasticsearch_container-}
1515
Original file line number Diff line number Diff line change 88 $TEST_SUITE = " free" ,
99
1010 [string ]
11- $DOTNET_VERSION = " 8.0.100 "
11+ $DOTNET_VERSION = " 8.0.400 "
1212)
1313
1414$ESC = [char ]27
Original file line number Diff line number Diff line change 1- ARG DOTNET_VERSION=8.0.100
1+ ARG DOTNET_VERSION=8.0.400
22FROM mcr.microsoft.com/dotnet/sdk:${DOTNET_VERSION} AS elasticsearch-net-build
33
44ENV NUGET_SCRATCH="/tmp/NuGetScratch"
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ OUTPUT_DIR="$repo/${output_folder}"
4242REPO_BINDING=" ${OUTPUT_DIR} :/sln/${output_folder} "
4343mkdir -p " $OUTPUT_DIR "
4444
45- DOTNET_VERSION=${DOTNET_VERSION-8.0.100 }
45+ DOTNET_VERSION=${DOTNET_VERSION-8.0.400 }
4646
4747echo -e " \033[34;1mINFO:\033[0m PRODUCT ${product} \033[0m"
4848echo -e " \033[34;1mINFO:\033[0m VERSION ${STACK_VERSION} \033[0m"
116116# ------------------------------------------------------- #
117117# Build Container
118118# ------------------------------------------------------- #
119-
119+
120120echo -e " \033[34;1mINFO: building $product container\033[0m"
121121
122122docker build --file .ci/DockerFile --tag ${product} \
@@ -140,7 +140,7 @@ docker run \
140140 --rm \
141141 ${product} \
142142 /bin/bash -c " ./build.sh $TASK ${TASK_ARGS[*]} && chown -R $( id -u) :$( id -g) ."
143-
143+
144144# ------------------------------------------------------- #
145145# Post Command tasks & checks
146146# ------------------------------------------------------- #
168168
169169if [[ " $CMD " == " examplesgen" ]]; then
170170 echo " TODO"
171- fi
171+ fi
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ $ STACK_VERSION=8.0.0-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 ` | ` 8.0.100 ` | The .NET sdk version used to grab the proper container |
33+ | ` DOTNET_VERSION ` | ` 8.0.400 ` | The .NET sdk version used to grab the proper container |
3434
3535If you want to manually spin up elasticsearch for these tests and call the runner afterwards you can use
3636
Original file line number Diff line number Diff line change 66param (
77 [System.Uri ]
88 $ELASTICSEARCH_URL ,
9-
9+
1010 [string ]
1111 $NETWORK_NAME ,
12-
12+
1313 [string ]
1414 $NODE_NAME ,
15-
15+
1616 [string ]
17- $DOTNET_VERSION = " 8.0.100 "
17+ $DOTNET_VERSION = " 8.0.400 "
1818)
1919
2020$ESC = [char ]27
@@ -39,4 +39,4 @@ docker run `
3939 -- volume $repo / build/ output:/ sln/ build/ output `
4040 -- rm `
4141 elastic/ elasticsearch- net `
42- ./ build.sh rest- spec- tests -f count - e $ELASTICSEARCH_URL - o / sln/ build/ output/ rest- spec- junit.xml
42+ ./ build.sh rest- spec- tests -f count - e $ELASTICSEARCH_URL - o / sln/ build/ output/ rest- spec- junit.xml
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ script_path=$(dirname $(realpath -s $0))
99source $script_path /functions/imports.sh
1010set -euo pipefail
1111
12- DOTNET_VERSION=${DOTNET_VERSION-8.0.100 }
12+ DOTNET_VERSION=${DOTNET_VERSION-8.0.400 }
1313ELASTICSEARCH_URL=${ELASTICSEARCH_URL-" $elasticsearch_url " }
1414elasticsearch_container=${elasticsearch_container-}
1515
2727if [[ " $TEST_SECTION " != " " ]]; then
2828 run_script_args=" ${run_script_args} -s ${TEST_SECTION} "
2929fi
30-
30+
3131echo -e " \033[34;1mINFO:\033[0m VERSION ${STACK_VERSION} \033[0m"
3232echo -e " \033[34;1mINFO:\033[0m TEST_SUITE ${TEST_SUITE} \033[0m"
3333echo -e " \033[34;1mINFO:\033[0m URL ${ELASTICSEARCH_URL} \033[0m"
3434echo -e " \033[34;1mINFO:\033[0m CONTAINER ${elasticsearch_container} \033[0m"
3535echo -e " \033[34;1mINFO:\033[0m DOTNET_VERSION ${DOTNET_VERSION} \033[0m"
36-
36+
3737echo -e " \033[1m>>>>> Build [elastic/elasticsearch-net container] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>\033[0m"
3838
3939docker build --file .ci/DockerFile --tag elastic/elasticsearch-net \
You can’t perform that action at this time.
0 commit comments