File tree Expand file tree Collapse file tree 5 files changed +15
-21
lines changed Expand file tree Collapse file tree 5 files changed +15
-21
lines changed Original file line number Diff line number Diff line change @@ -12,22 +12,19 @@ steps:
12
12
command :
13
13
- .buildkite/scripts/run_tests.sh
14
14
env :
15
- ELASTIC_STACK_VERSION : " 8.x "
15
+ ELASTIC_STACK_VERSION : " 8.current "
16
16
SNAPSHOT : false
17
17
INTEGRATION : true
18
18
SECURE_INTEGRATION : true
19
19
TARGET_BRANCH : " 8.x"
20
- # temporary definition to cover PR-170
21
- # TODO: remove once 8.16 released
22
- ELASTICSEARCH_TREEISH : 8.16
23
20
24
21
- label : " :hammer: Build plugin with LS 8.x-SNAPSHOT & ES `main` branch :elasticsearch:"
25
22
# Builds with LS last 8.x released version and ES main
26
23
# Runs integration tests on 8.x released versions
27
24
command :
28
25
- .buildkite/scripts/run_tests.sh
29
26
env :
30
- ELASTIC_STACK_VERSION : " 8.x "
27
+ ELASTIC_STACK_VERSION : " 8.current "
31
28
ELASTICSEARCH_TREEISH : " main"
32
29
SNAPSHOT : true
33
30
INTEGRATION : true
Original file line number Diff line number Diff line change 15
15
command :
16
16
- .buildkite/scripts/run_e2e_tests.sh
17
17
env :
18
- ELASTIC_STACK_VERSION : " 8.x "
18
+ ELASTIC_STACK_VERSION : " 8.current "
19
19
TARGET_BRANCH : " 8.x"
20
20
21
21
- label : " :test_tube: Run E2E tests with LS 8.x-SNAPSHOT :rocket:"
24
24
command :
25
25
- .buildkite/scripts/run_e2e_tests.sh
26
26
env :
27
- ELASTIC_STACK_VERSION : " 8.x "
27
+ ELASTIC_STACK_VERSION : " 8.current "
28
28
SNAPSHOT : true
29
29
30
30
- label : " :test_tube: Run E2E tests with LS `main` :rocket:"
Original file line number Diff line number Diff line change 12
12
command :
13
13
- .buildkite/scripts/run_tests.sh
14
14
env :
15
- ELASTIC_STACK_VERSION : " 8.x "
15
+ ELASTIC_STACK_VERSION : " 8.current "
16
16
SNAPSHOT : true
17
17
INTEGRATION : false
18
18
22
22
command :
23
23
- .buildkite/scripts/run_tests.sh
24
24
env :
25
- ELASTIC_STACK_VERSION : " 8.x "
25
+ ELASTIC_STACK_VERSION : " 8.current "
26
26
ELASTICSEARCH_TREEISH : main
27
27
INTEGRATION : false
28
28
SNAPSHOT : true
@@ -34,20 +34,17 @@ steps:
34
34
command :
35
35
- .buildkite/scripts/run_tests.sh
36
36
env :
37
- ELASTIC_STACK_VERSION : " 8.x "
37
+ ELASTIC_STACK_VERSION : " 8.current "
38
38
INTEGRATION : true
39
39
SECURE_INTEGRATION : true
40
- # temporary definition to cover PR-170
41
- # TODO: remove once 8.16 released
42
- ELASTICSEARCH_TREEISH : 8.16
43
40
44
41
- label : " :hammer: Integration tests with LS & ES 8.x-SNAPSHOT :docker:"
45
42
# Builds the plugin (with current changes) against LS 8.x-SNAPSHOT and ES version defined in gradle.properties
46
43
# Runs integration tests on LS & ES 8.x-SNAPSHOT docker
47
44
command :
48
45
- .buildkite/scripts/run_tests.sh
49
46
env :
50
- ELASTIC_STACK_VERSION : " 8.x "
47
+ ELASTIC_STACK_VERSION : " 8.current "
51
48
SNAPSHOT : true
52
49
INTEGRATION : true
53
50
SECURE_INTEGRATION : true
59
56
command :
60
57
- .buildkite/scripts/run_tests.sh
61
58
env :
62
- ELASTIC_STACK_VERSION : " 8.x "
59
+ ELASTIC_STACK_VERSION : " 8.current "
63
60
ELASTICSEARCH_TREEISH : " main"
64
61
SNAPSHOT : true
65
62
INTEGRATION : true
Original file line number Diff line number Diff line change 8
8
export BUILDKIT_PROGRESS=plain
9
9
10
10
if [ " $INTEGRATION " == " true" ]; then
11
- docker- compose up --exit-code-from logstash
11
+ docker compose up --exit-code-from logstash
12
12
else
13
- docker- compose up --exit-code-from logstash logstash
13
+ docker compose up --exit-code-from logstash logstash
14
14
fi
Original file line number Diff line number Diff line change @@ -49,11 +49,11 @@ if [ "$ELASTIC_STACK_VERSION" ]; then
49
49
export BUILDKIT_PROGRESS=plain
50
50
51
51
if [ " $INTEGRATION " == " true" ]; then
52
- docker- compose down
53
- docker- compose build
52
+ docker compose down
53
+ docker compose build
54
54
else
55
- docker- compose down
56
- docker- compose build logstash
55
+ docker compose down
56
+ docker compose build logstash
57
57
fi
58
58
else
59
59
echo " Please set the ELASTIC_STACK_VERSION environment variable"
You can’t perform that action at this time.
0 commit comments