-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/bash | ||
|
||
if [[ ! "${BUILDKITE_PULL_REQUEST:-}" || "${BUILDKITE_AGENT_META_DATA_PROVIDER:-}" == "k8s" ]]; then | ||
exit 0 | ||
fi | ||
|
||
testMuteBranch="${BUILDKITE_PULL_REQUEST_BASE_BRANCH:-main}" | ||
testMuteFile="$(mktemp)" | ||
|
||
# If this PR contains changes to muted-tests.yml, we disable this functionality | ||
# Otherwise, we wouldn't be able to test unmutes | ||
if [[ ! $(gh pr diff "$BUILDKITE_PULL_REQUEST" --name-only | grep 'muted-tests.yml') ]]; then | ||
gh api -H 'Accept: application/vnd.github.v3.raw' "repos/elastic/elasticsearch/contents/muted-tests.yml?ref=$testMuteBranch" > "$testMuteFile" | ||
|
||
if [[ -s "$testMuteFile" ]]; then | ||
mkdir -p ~/.gradle | ||
# This is using gradle.properties instead of an env var so that it's easily compatible with the Windows pre-command hook | ||
echo "org.gradle.project.org.elasticsearch.additional.muted.tests=$testMuteFile" >> ~/.gradle/gradle.properties | ||
fi | ||
fi |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 113120 | ||
summary: ESQL - enabling scoring with METADATA `_score` | ||
area: ES|QL | ||
type: enhancement | ||
issues: [] |
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 114317 | ||
summary: "ESQL: CATEGORIZE as a `BlockHash`" | ||
area: ES|QL | ||
type: enhancement | ||
issues: [] |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 116739 | ||
summary: Change default Docker image to be based on UBI minimal instead of Ubuntu | ||
area: Infra/Core | ||
type: enhancement | ||
issues: [] |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 117265 | ||
summary: Async search responses have CCS metadata while searches are running | ||
area: ES|QL | ||
type: enhancement | ||
issues: [] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 117303 | ||
summary: Remove HTTP content copies | ||
area: Network | ||
type: enhancement | ||
issues: [] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pr: 117503 | ||
summary: Fix COUNT filter pushdown | ||
area: ES|QL | ||
type: bug | ||
issues: | ||
- 115522 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 117551 | ||
summary: Fix stats by constant expresson with alias | ||
area: ES|QL | ||
type: bug | ||
issues: [] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 117595 | ||
summary: Fix for Deberta tokenizer when input sequence exceeds 512 tokens | ||
area: Machine Learning | ||
type: bug | ||
issues: [] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 117618 | ||
summary: SearchStatesIt failures reported by CI | ||
area: Search | ||
type: bug | ||
issues: [116617, 116618] |