49
49
retry :
50
50
automatic :
51
51
- limit : 3
52
- env :
53
- ENABLE_SONARQUBE : true
54
52
command : |
55
53
set -euo pipefail
56
54
source .buildkite/scripts/common/container-agent.sh
60
58
- " **/jacocoTestReport.xml"
61
59
- " **/build/classes/**/*.*"
62
60
61
+ <<<<<<< HEAD
63
62
- label : " :sonarqube: Continuous Code Inspection"
64
63
if : |
65
64
build.pull_request.id != null ||
@@ -80,6 +79,147 @@ steps:
80
79
retry :
81
80
manual :
82
81
allowed : true
82
+ =======
83
+ - label : " :java: Java unit tests - FIPS mode"
84
+ key : " java-unit-tests-fips"
85
+ agents :
86
+ provider : gcp
87
+ imageProject : elastic-images-prod
88
+ image : family/platform-ingest-logstash-ubuntu-2204
89
+ machineType : " n2-standard-4"
90
+ diskSizeGb : 64
91
+ retry :
92
+ automatic :
93
+ - limit : 3
94
+ command : |
95
+ set -euo pipefail
96
+
97
+ docker build -t test-runner-image -f x-pack/distributions/internal/observabilitySRE/docker/Dockerfile .
98
+ docker run test-runner-image ./gradlew --info --stacktrace -PfedrampHighMode=true javaTests
99
+ artifact_paths :
100
+ - " **/build/test-results/javaTests/TEST-*.xml"
101
+ - " **/jacocoTestReport.xml"
102
+ - " **/build/classes/**/*.*"
103
+
104
+ - label : " Observability SRE container smoke test"
105
+ key : " observability-sre-container-smoke-test"
106
+ agents :
107
+ provider : gcp
108
+ imageProject : elastic-images-prod
109
+ image : family/platform-ingest-logstash-ubuntu-2204
110
+ machineType : " n2-standard-4"
111
+ diskSizeGb : 64
112
+ retry :
113
+ automatic :
114
+ - limit : 3
115
+ command : |
116
+ set -euo pipefail
117
+ source .buildkite/scripts/common/vm-agent.sh
118
+ export ARCH="x86_64"
119
+ ./ci/observabilitySREsmoke_tests.sh
120
+
121
+ - label : " :lab_coat: Integration Tests - FIPS mode / part 1-of-6"
122
+ key : " integration-tests-fips-part-1-of-6"
123
+ agents :
124
+ provider : gcp
125
+ imageProject : elastic-images-prod
126
+ image : family/platform-ingest-logstash-ubuntu-2204
127
+ machineType : " n2-standard-4"
128
+ diskSizeGb : 64
129
+ retry :
130
+ automatic :
131
+ - limit : 3
132
+ command : |
133
+ set -euo pipefail
134
+
135
+ docker build -t test-runner-image -f x-pack/distributions/internal/observabilitySRE/docker/Dockerfile .
136
+ docker run -e FEDRAMP_HIGH_MODE=true test-runner-image ci/integration_tests.sh split 0 6
137
+
138
+ - label : " :lab_coat: Integration Tests - FIPS mode / part 2-of-6"
139
+ key : " integration-tests-fips-part-2-of-6"
140
+ agents :
141
+ provider : gcp
142
+ imageProject : elastic-images-prod
143
+ image : family/platform-ingest-logstash-ubuntu-2204
144
+ machineType : " n2-standard-4"
145
+ diskSizeGb : 64
146
+ retry :
147
+ automatic :
148
+ - limit : 3
149
+ command : |
150
+ set -euo pipefail
151
+
152
+ docker build -t test-runner-image -f x-pack/distributions/internal/observabilitySRE/docker/Dockerfile .
153
+ docker run -e FEDRAMP_HIGH_MODE=true test-runner-image ci/integration_tests.sh split 1 6
154
+
155
+ - label : " :lab_coat: Integration Tests - FIPS mode / part 3-of-6"
156
+ key : " integration-tests-fips-part-3-of-6"
157
+ agents :
158
+ provider : gcp
159
+ imageProject : elastic-images-prod
160
+ image : family/platform-ingest-logstash-ubuntu-2204
161
+ machineType : " n2-standard-4"
162
+ diskSizeGb : 64
163
+ retry :
164
+ automatic :
165
+ - limit : 3
166
+ command : |
167
+ set -euo pipefail
168
+
169
+ docker build -t test-runner-image -f x-pack/distributions/internal/observabilitySRE/docker/Dockerfile .
170
+ docker run -e FEDRAMP_HIGH_MODE=true test-runner-image ci/integration_tests.sh split 2 6
171
+
172
+ - label : " :lab_coat: Integration Tests - FIPS mode / part 4-of-6"
173
+ key : " integration-tests-fips-part-4-of-6"
174
+ agents :
175
+ provider : gcp
176
+ imageProject : elastic-images-prod
177
+ image : family/platform-ingest-logstash-ubuntu-2204
178
+ machineType : " n2-standard-4"
179
+ diskSizeGb : 64
180
+ retry :
181
+ automatic :
182
+ - limit : 3
183
+ command : |
184
+ set -euo pipefail
185
+
186
+ docker build -t test-runner-image -f x-pack/distributions/internal/observabilitySRE/docker/Dockerfile .
187
+ docker run -e FEDRAMP_HIGH_MODE=true test-runner-image ci/integration_tests.sh split 3 6
188
+
189
+ - label : " :lab_coat: Integration Tests - FIPS mode / part 5-of-6"
190
+ key : " integration-tests-fips-part-5-of-6"
191
+ agents :
192
+ provider : gcp
193
+ imageProject : elastic-images-prod
194
+ image : family/platform-ingest-logstash-ubuntu-2204
195
+ machineType : " n2-standard-4"
196
+ diskSizeGb : 64
197
+ retry :
198
+ automatic :
199
+ - limit : 3
200
+ command : |
201
+ set -euo pipefail
202
+
203
+ docker build -t test-runner-image -f x-pack/distributions/internal/observabilitySRE/docker/Dockerfile .
204
+ docker run -e FEDRAMP_HIGH_MODE=true test-runner-image ci/integration_tests.sh split 4 6
205
+
206
+ - label : " :lab_coat: Integration Tests - FIPS mode / part 6-of-6"
207
+ key : " integration-tests-fips-part-6-of-6"
208
+ agents :
209
+ provider : gcp
210
+ imageProject : elastic-images-prod
211
+ image : family/platform-ingest-logstash-ubuntu-2204
212
+ machineType : " n2-standard-4"
213
+ diskSizeGb : 64
214
+ retry :
215
+ automatic :
216
+ - limit : 3
217
+ command : |
218
+ set -euo pipefail
219
+
220
+ docker build -t test-runner-image -f x-pack/distributions/internal/observabilitySRE/docker/Dockerfile .
221
+ docker run -e FEDRAMP_HIGH_MODE=true test-runner-image ci/integration_tests.sh split 5 6
222
+ >>>>>>> cbef0782 (ci: remove sonarqube (#18273))
83
223
84
224
- label : " :lab_coat: Integration Tests / part 1-of-6"
85
225
key : " integration-tests-part-1-of-6"
0 commit comments