Skip to content

Commit 39f558f

Browse files
authored
Merge branch 'main' into analytics-logging
2 parents 8c38b2d + 787b73a commit 39f558f

File tree

1,087 files changed

+231374
-10877
lines changed

Some content is hidden

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

1,087 files changed

+231374
-10877
lines changed

.buildkite/pipelines/intake.template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ steps:
107107
- trigger: elasticsearch-dra-workflow
108108
label: Trigger DRA snapshot workflow
109109
async: true
110-
branches: "main 9.* 8.* 7.17"
110+
branches: "main 9.* 8.*"
111111
build:
112112
branch: "$BUILDKITE_BRANCH"
113113
commit: "$BUILDKITE_COMMIT"

.buildkite/pipelines/intake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ steps:
108108
- trigger: elasticsearch-dra-workflow
109109
label: Trigger DRA snapshot workflow
110110
async: true
111-
branches: "main 9.* 8.* 7.17"
111+
branches: "main 9.* 8.*"
112112
build:
113113
branch: "$BUILDKITE_BRANCH"
114114
commit: "$BUILDKITE_COMMIT"

.buildkite/pipelines/periodic-java-ea.template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ steps:
7474
machineType: n1-standard-32
7575
buildDirectory: /dev/shm/bk
7676
env:
77-
GRADLE_PARAMS: "-Druntime.java=$$JAVA_EA_VERSION"
77+
GRADLE_PARAMS: "-Druntime.java=$JAVA_EA_VERSION"
7878
GRADLE_TASK: "{{matrix.GRADLE_TASK}}"
7979
- label: "{{matrix.BWC_VERSION}} / matrix-bwc"
8080
command: .ci/scripts/run-gradle.sh -Druntime.java=$$JAVA_EA_VERSION -Dbwc.checkout.align=true v$$BWC_VERSION#bwcTest

.buildkite/pipelines/periodic-java-ea.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ steps:
550550
machineType: n1-standard-32
551551
buildDirectory: /dev/shm/bk
552552
env:
553-
GRADLE_PARAMS: "-Druntime.java=$$JAVA_EA_VERSION"
553+
GRADLE_PARAMS: "-Druntime.java=$JAVA_EA_VERSION"
554554
GRADLE_TASK: "{{matrix.GRADLE_TASK}}"
555555
- label: "{{matrix.BWC_VERSION}} / matrix-bwc"
556556
command: .ci/scripts/run-gradle.sh -Druntime.java=$$JAVA_EA_VERSION -Dbwc.checkout.align=true v$$BWC_VERSION#bwcTest

.buildkite/pipelines/pull-request/part-3.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
config:
2-
skip-target-branches: "7.17"
31
steps:
42
- label: part-3
53
command: .ci/scripts/run-gradle.sh -Dignore.tests.seed checkPart3

.buildkite/pipelines/pull-request/part-4.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
config:
2-
skip-target-branches: "7.17"
31
steps:
42
- label: part-4
53
command: .ci/scripts/run-gradle.sh -Dignore.tests.seed checkPart4

.buildkite/pipelines/pull-request/part-5.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
config:
2-
skip-target-branches: "7.17"
31
steps:
42
- label: part-5
53
command: .ci/scripts/run-gradle.sh -Dignore.tests.seed checkPart5

.buildkite/pipelines/pull-request/rest-compatibility.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
config:
2-
skip-target-branches: "7.17"
31
steps:
42
- label: rest-compatibility
53
command: .ci/scripts/run-gradle.sh -Dignore.tests.seed checkRestCompat

.buildkite/scripts/dra-update-staging.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ source .buildkite/scripts/branches.sh
66

77
for BRANCH in "${BRANCHES[@]}"; do
88
# Don't publish main branch to staging
9-
if [[ "$BRANCH" == "main" || "$BRANCH" == "7.17" ]]; then
9+
if [[ "$BRANCH" == "main" ]]; then
1010
continue
1111
fi
1212

.buildkite/scripts/dra-workflow.trigger.sh

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -46,18 +46,4 @@ for BRANCH in "${BRANCHES[@]}"; do
4646
DRA_WORKFLOW: staging
4747
VERSION_QUALIFIER: ${VERSION_QUALIFIER:-}
4848
EOF
49-
50-
if [ "$BRANCH" = "7.17" ]; then
51-
cat <<EOF
52-
- trigger: elasticsearch-dra-workflow
53-
label: Trigger DRA snapshot workflow for $BRANCH
54-
async: true
55-
build:
56-
branch: "$BRANCH"
57-
commit: "$LAST_GOOD_COMMIT"
58-
env:
59-
DRA_WORKFLOW: snapshot
60-
VERSION_QUALIFIER: ${VERSION_QUALIFIER:-}
61-
EOF
62-
fi
6349
done

0 commit comments

Comments
 (0)