-
Notifications
You must be signed in to change notification settings - Fork 525
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into inject-build-pgo-profile
- Loading branch information
Showing
5 changed files
with
23 additions
and
26 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
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 |
---|---|---|
|
@@ -6397,11 +6397,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
|
||
-------------------------------------------------------------------------------- | ||
Dependency : google.golang.org/grpc | ||
Version: v1.67.0 | ||
Version: v1.67.1 | ||
Licence type (autodetected): Apache-2.0 | ||
-------------------------------------------------------------------------------- | ||
|
||
Contents of probable licence file $GOMODCACHE/google.golang.org/[email protected].0/LICENSE: | ||
Contents of probable licence file $GOMODCACHE/google.golang.org/[email protected].1/LICENSE: | ||
|
||
|
||
Apache License | ||
|
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
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 |
---|---|---|
|
@@ -179,20 +179,20 @@ cleanup-elasticsearch: | |
@ curl -u $(ELASTICSEARCH_USER):$(ELASTICSEARCH_PASS) -XDELETE $(ELASTICSEARCH_URL)/_data_stream/$(APM_DATA_STREAMS) | ||
|
||
# This target is intended to be run from CI to create a PGO update PR. | ||
PGO_BRANCH = update-pgo-$(shell date +%s) | ||
.PHONY: push-pgo-pr | ||
push-pgo-pr: | ||
@cd $(WORKSPACE_PATH) | ||
@git config user.email "[email protected]" | ||
@git config user.name "APM Server" | ||
@git fetch origin main | ||
@git checkout main | ||
@BRANCH="update-pgo-$(date +%s)" | ||
@git checkout -b $(BRANCH) | ||
@mv $(PROFILE_PATH) x-pack/apm-server/default.pgo | ||
@git add x-pack/apm-server/default.pgo | ||
@git commit -m "PGO: Update default.pgo from benchmarks $(WORKFLOW)." | ||
@git push -u origin $(BRANCH) | ||
@gh pr create -B main -H $(BRANCH) -t "PGO: Update default.pgo" -b "Update default.pgo CPU profile from the benchmarks [workflow]($(WORKFLOW))." -R elastic/apm-server | ||
@cd $(WORKSPACE_PATH); \ | ||
git config user.email "[email protected]"; \ | ||
git config user.name "APM Server"; \ | ||
git fetch origin main; \ | ||
git checkout main; \ | ||
git checkout -b $(PGO_BRANCH); \ | ||
mv $(PROFILE_PATH) x-pack/apm-server/default.pgo; \ | ||
git add x-pack/apm-server/default.pgo; \ | ||
git commit -m "PGO: Update default.pgo from benchmarks $(WORKFLOW)."; \ | ||
git push -u origin $(PGO_BRANCH); \ | ||
gh pr create -B main -H $(PGO_BRANCH) -t "PGO: Update default.pgo" -b "Update default.pgo CPU profile from the benchmarks [workflow]($(WORKFLOW))." -R elastic/apm-server | ||
|
||
############################################################################## | ||
# Target for creating a .tfvars file, defining the custom Docker images to | ||
|