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