Skip to content

Commit 77b134d

Browse files
committed
Merge branch 'main' into 11767-remove-deprecation
2 parents 828c4db + 8465727 commit 77b134d

6,047 files changed

Lines changed: 419038 additions & 179939 deletions

File tree

Some content is hidden

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

.buildkite/hooks/pre-command

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ git config --global core.pager 'cat'
1111
export UPLOAD_SAFE_LOGS=${UPLOAD_SAFE_LOGS:-"0"}
1212
export SERVERLESS=${SERVERLESS:-"false"}
1313
export STACK_VERSION=${STACK_VERSION:-""}
14+
export ELASTIC_SUBSCRIPTION=${ELASTIC_SUBSCRIPTION:-""}
15+
export STACK_LOGSDB_ENABLED=${STACK_LOGSDB_ENABLED:-"false"}
1416
export FORCE_CHECK_ALL=${FORCE_CHECK_ALL:-"false"}
1517
export PUBLISH_COVERAGE_REPORTS=${PUBLISH_COVERAGE_REPORTS:-"false"}
1618

.buildkite/pipeline.schedule-daily.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ steps:
2525
depends_on:
2626
- step: "check"
2727
allow_failure: false
28+
if: |
29+
build.env('TEST_PACKAGES_7_BRANCH') == "true"
2830
2931
- label: "Check integrations local stacks - Stack Version v8.19"
3032
trigger: "integrations"
@@ -37,6 +39,8 @@ steps:
3739
depends_on:
3840
- step: "check"
3941
allow_failure: false
42+
if: |
43+
build.env('TEST_PACKAGES_8_BRANCH') == "true"
4044
4145
- label: "Check integrations local stacks - Stack Version v8.19 - LogsDB"
4246
trigger: "integrations"
@@ -50,6 +54,37 @@ steps:
5054
depends_on:
5155
- step: "check"
5256
allow_failure: false
57+
if: |
58+
build.env('TEST_PACKAGES_8_BRANCH') == "true"
59+
60+
- label: "Check integrations local stacks and basic subscription and LogsDB"
61+
trigger: "integrations"
62+
build:
63+
env:
64+
SERVERLESS: "false"
65+
FORCE_CHECK_ALL: "true"
66+
PUBLISH_COVERAGE_REPORTS: "false"
67+
ELASTIC_SUBSCRIPTION: "basic"
68+
STACK_LOGSDB_ENABLED: "true"
69+
depends_on:
70+
- step: "check"
71+
allow_failure: false
72+
if: |
73+
build.env('TEST_PACKAGES_BASIC_SUBSCRIPTION') == "true"
74+
75+
- label: "Check integrations local stacks and basic subscription"
76+
trigger: "integrations"
77+
build:
78+
env:
79+
SERVERLESS: "false"
80+
FORCE_CHECK_ALL: "true"
81+
PUBLISH_COVERAGE_REPORTS: "false"
82+
ELASTIC_SUBSCRIPTION: "basic"
83+
depends_on:
84+
- step: "check"
85+
allow_failure: false
86+
if: |
87+
build.env('TEST_PACKAGES_BASIC_SUBSCRIPTION') == "true"
5388
5489
- label: "Check integrations local stacks - Stack Version v9.1"
5590
trigger: "integrations"
@@ -62,6 +97,8 @@ steps:
6297
depends_on:
6398
- step: "check"
6499
allow_failure: false
100+
if: |
101+
build.env('TEST_PACKAGES_9_BRANCH') == "true"
65102
66103
- label: "Check integrations in serverless - project: Observability"
67104
key: "trigger-integrations-serverless-obs"
@@ -72,6 +109,8 @@ steps:
72109
depends_on:
73110
- step: "check"
74111
allow_failure: false
112+
if: |
113+
build.env('TEST_PACKAGES_SERVERLESS') == "true"
75114
76115
- label: "Check integrations in serverless - project: Security"
77116
key: "trigger-integrations-serverless-security"
@@ -82,10 +121,14 @@ steps:
82121
depends_on:
83122
- step: "check"
84123
allow_failure: false
124+
if: |
125+
build.env('TEST_PACKAGES_SERVERLESS') == "true"
85126
86127
- label: ":package: Publish missing packages"
87128
key: "trigger-integrations-publish"
88129
trigger: "integrations-publish"
89130
depends_on:
90131
- step: "check"
91132
allow_failure: false
133+
if: |
134+
build.env('REPUBLISH_PACKAGES') == "true"

.buildkite/pipeline.serverless.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ env:
55
LINUX_AGENT_IMAGE: "golang:${GO_VERSION}"
66
DOCKER_COMPOSE_VERSION: "v2.24.1"
77
DOCKER_VERSION: "false" # not required to set since system tests are not running yet
8-
KIND_VERSION: 'v0.20.0'
9-
K8S_VERSION: 'v1.31.0'
8+
KIND_VERSION: 'v0.27.0'
9+
K8S_VERSION: 'v1.32.0'
1010
YQ_VERSION: 'v4.35.2'
1111
IMAGE_UBUNTU_X86_64: "family/core-ubuntu-2204"
1212
GH_CLI_VERSION: "2.29.0"

.buildkite/pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ env:
33
SETUP_GVM_VERSION: "v0.5.2"
44
DOCKER_COMPOSE_VERSION: "v2.24.1"
55
DOCKER_VERSION: "26.1.2"
6-
KIND_VERSION: 'v0.20.0'
7-
K8S_VERSION: 'v1.31.0'
6+
KIND_VERSION: 'v0.27.0'
7+
K8S_VERSION: 'v1.32.0'
88
YQ_VERSION: 'v4.35.2'
99
JQ_VERSION: '1.7'
1010
GH_CLI_VERSION: "2.29.0"

0 commit comments

Comments
 (0)