Skip to content

Commit 8a074ef

Browse files
authored
Move away from shared project (elastic#8376)
1 parent 5cde969 commit 8a074ef

File tree

314 files changed

+107
-15402
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

314 files changed

+107
-15402
lines changed

.buildkite/DockerFile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG DOTNET_VERSION=8.0.100
1+
ARG DOTNET_VERSION=8.0.400
22
FROM mcr.microsoft.com/dotnet/sdk:${DOTNET_VERSION} AS elasticsearch-net-build
33

44
ENV NUGET_SCRATCH="/tmp/NuGetScratch"

.buildkite/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ steps:
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:

.buildkite/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 = "8.0.100"
17+
$DOTNET_VERSION = "8.0.400"
1818
)
1919

2020
$ESC = [char]27

.buildkite/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-8.0.100}
12+
DOTNET_VERSION=${DOTNET_VERSION-8.0.400}
1313
ELASTICSEARCH_URL=${ELASTICSEARCH_URL-"$elasticsearch_url"}
1414
elasticsearch_container=${elasticsearch_container-}
1515

.buildkite/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 = "8.0.100"
11+
$DOTNET_VERSION = "8.0.400"
1212
)
1313

1414
$ESC = [char]27

.ci/DockerFile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG DOTNET_VERSION=8.0.100
1+
ARG DOTNET_VERSION=8.0.400
22
FROM mcr.microsoft.com/dotnet/sdk:${DOTNET_VERSION} AS elasticsearch-net-build
33

44
ENV NUGET_SCRATCH="/tmp/NuGetScratch"

.ci/make.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ OUTPUT_DIR="$repo/${output_folder}"
4242
REPO_BINDING="${OUTPUT_DIR}:/sln/${output_folder}"
4343
mkdir -p "$OUTPUT_DIR"
4444

45-
DOTNET_VERSION=${DOTNET_VERSION-8.0.100}
45+
DOTNET_VERSION=${DOTNET_VERSION-8.0.400}
4646

4747
echo -e "\033[34;1mINFO:\033[0m PRODUCT ${product}\033[0m"
4848
echo -e "\033[34;1mINFO:\033[0m VERSION ${STACK_VERSION}\033[0m"
@@ -116,7 +116,7 @@ esac
116116
# ------------------------------------------------------- #
117117
# Build Container
118118
# ------------------------------------------------------- #
119-
119+
120120
echo -e "\033[34;1mINFO: building $product container\033[0m"
121121

122122
docker 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
# ------------------------------------------------------- #
@@ -168,4 +168,4 @@ fi
168168

169169
if [[ "$CMD" == "examplesgen" ]]; then
170170
echo "TODO"
171-
fi
171+
fi

.ci/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

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

.ci/run-repository.ps1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
param(
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

.ci/run-repository.sh

Lines changed: 3 additions & 3 deletions
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-8.0.100}
12+
DOTNET_VERSION=${DOTNET_VERSION-8.0.400}
1313
ELASTICSEARCH_URL=${ELASTICSEARCH_URL-"$elasticsearch_url"}
1414
elasticsearch_container=${elasticsearch_container-}
1515

@@ -27,13 +27,13 @@ fi
2727
if [[ "$TEST_SECTION" != "" ]]; then
2828
run_script_args="${run_script_args} -s ${TEST_SECTION}"
2929
fi
30-
30+
3131
echo -e "\033[34;1mINFO:\033[0m VERSION ${STACK_VERSION}\033[0m"
3232
echo -e "\033[34;1mINFO:\033[0m TEST_SUITE ${TEST_SUITE}\033[0m"
3333
echo -e "\033[34;1mINFO:\033[0m URL ${ELASTICSEARCH_URL}\033[0m"
3434
echo -e "\033[34;1mINFO:\033[0m CONTAINER ${elasticsearch_container}\033[0m"
3535
echo -e "\033[34;1mINFO:\033[0m DOTNET_VERSION ${DOTNET_VERSION}\033[0m"
36-
36+
3737
echo -e "\033[1m>>>>> Build [elastic/elasticsearch-net container] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>\033[0m"
3838

3939
docker build --file .ci/DockerFile --tag elastic/elasticsearch-net \

0 commit comments

Comments
 (0)