File tree 4 files changed +23
-4
lines changed
4 files changed +23
-4
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,8 @@ if [[ "$BUILDKITE_PIPELINE_SLUG" == "elastic-agent-package" ]]; then
46
46
fi
47
47
fi
48
48
49
- if [[ " $BUILDKITE_PIPELINE_SLUG " == " elastic-agent-extended-testing" && " $BUILDKITE_STEP_KEY " == * " integration-tests" * ]]; then
49
+ if [[ " $BUILDKITE_STEP_KEY " == * " integration-tests" * ]]; then
50
+ echo " Setting credentials"
50
51
# Set GCP credentials
51
52
export GOOGLE_APPLICATION_GCP_SECRET=$( retry 5 vault kv get -format=json -field=data ${CI_GCP_OBS_PATH} )
52
53
echo " ${GOOGLE_APPLICATION_GCP_SECRET} " > ./gcp.json
Original file line number Diff line number Diff line change 2
2
3
3
set -eo pipefail
4
4
5
- if [[ " $BUILDKITE_PIPELINE_SLUG " == " elastic-agent-extended-testing " && " $ BUILDKITE_STEP_KEY" == * " integration-tests" * ]]; then
5
+ if [[ " $BUILDKITE_STEP_KEY " == * " integration-tests" * ]]; then
6
6
if [[ -z " ${WORKSPACE-" " } " ]]; then
7
7
WORKSPACE=$( git rev-parse --show-toplevel)
8
8
fi
Original file line number Diff line number Diff line change
1
+ # yaml-language-server: $schema=https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json
2
+
3
+ env :
4
+ DOCKER_REGISTRY : " docker.elastic.co"
5
+ VAULT_PATH : " kv/ci-shared/observability-ingest/cloud/gcp"
6
+
7
+ steps :
8
+ - label : " Integration test matrix"
9
+ key : " integration-tests-matrix"
10
+ command : " .buildkite/scripts/steps/integration_tests.sh stateful integration:matrix"
11
+ artifact_paths :
12
+ - " build/TEST-**"
13
+ - " build/diagnostics/*"
14
+ agents :
15
+ provider : " gcp"
16
+ machineType : " n1-standard-8"
Original file line number Diff line number Diff line change @@ -137,6 +137,7 @@ var (
137
137
},
138
138
Runner : WindowsRunner {},
139
139
}
140
+
140
141
// WindowsAMD64_2016 - Windows (amd64) Server 2016
141
142
WindowsAMD64_2016 = SupportedOS {
142
143
OS : define.OS {
@@ -177,8 +178,9 @@ var supported = []SupportedOS{
177
178
WindowsAMD64_2022_Core ,
178
179
WindowsAMD64_2019 ,
179
180
WindowsAMD64_2019_Core ,
180
- WindowsAMD64_2016 ,
181
- WindowsAMD64_2016_Core ,
181
+ // https://github.com/elastic/ingest-dev/issues/3484
182
+ // WindowsAMD64_2016,
183
+ // WindowsAMD64_2016_Core,
182
184
}
183
185
184
186
// osMatch returns true when the specific OS is a match for a non-specific OS.
You can’t perform that action at this time.
0 commit comments