forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'partial-rest-requests' into incremental_bulk_rest
- Loading branch information
Showing
1,000 changed files
with
35,411 additions
and
7,738 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,17 +2,17 @@ | |
|
||
set -euo pipefail | ||
|
||
if [[ "$BUILDKITE_BRANCH" != "lucene_snapshot" ]]; then | ||
echo "Error: This script should only be run on the lucene_snapshot branch" | ||
if [[ "$BUILDKITE_BRANCH" != "lucene_snapshot"* ]]; then | ||
echo "Error: This script should only be run on lucene_snapshot branches" | ||
exit 1 | ||
fi | ||
|
||
echo --- Updating lucene_snapshot branch with main | ||
echo --- Updating "$BUILDKITE_BRANCH" branch with main | ||
|
||
git config --global user.name elasticsearchmachine | ||
git config --global user.email '[email protected]' | ||
|
||
git checkout lucene_snapshot | ||
git checkout "$BUILDKITE_BRANCH" | ||
git fetch origin main | ||
git merge --no-edit origin/main | ||
git push origin lucene_snapshot | ||
git push origin "$BUILDKITE_BRANCH" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.