From a465d093a882d8b4a9ec1ae97d8494b0d2f9ae39 Mon Sep 17 00:00:00 2001 From: sharbuz <87968844+sharbuz@users.noreply.github.com> Date: Mon, 13 Nov 2023 08:34:18 +0200 Subject: [PATCH 1/3] add uploading the test-unit.out.xml artifact (#3091) --- .buildkite/pipeline.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index ad2fc1f6e..8a85b5c17 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -81,6 +81,7 @@ steps: image: "docker.elastic.co/cloud-ci/sonarqube/buildkite-scanner:latest" command: - "buildkite-agent artifact download build/*coverage.out ." + - "buildkite-agent artifact download build/test-unit.out.xml ." - "/scan-source-code.sh" depends_on: - step: "unit-test" From 04422fd1938919bbba71db2d60628d94ec86b81d Mon Sep 17 00:00:00 2001 From: apmmachine <58790750+apmmachine@users.noreply.github.com> Date: Tue, 14 Nov 2023 12:38:33 -0500 Subject: [PATCH 2/3] [updatecli] update elastic stack version for testing 8.12.0-628b3b84-SNAPSHOT (#3036) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: Update snapshot.yml Made with ❤️️ by updatecli * chore: Update snapshot.yml Made with ❤️️ by updatecli * chore: Update snapshot.yml Made with ❤️️ by updatecli * chore: Update snapshot.yml Made with ❤️️ by updatecli * chore: Update snapshot.yml Made with ❤️️ by updatecli * chore: Update snapshot.yml Made with ❤️️ by updatecli * chore: Update snapshot.yml Made with ❤️️ by updatecli * chore: Update snapshot.yml Made with ❤️️ by updatecli * chore: Update snapshot.yml Made with ❤️️ by updatecli * chore: Update snapshot.yml Made with ❤️️ by updatecli * chore: Update snapshot.yml Made with ❤️️ by updatecli * chore: Update snapshot.yml Made with ❤️️ by updatecli * chore: Update snapshot.yml Made with ❤️️ by updatecli * chore: Update snapshot.yml Made with ❤️️ by updatecli --------- Co-authored-by: apmmachine Co-authored-by: Michel Laterman <82832767+michel-laterman@users.noreply.github.com> --- dev-tools/integration/.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-tools/integration/.env b/dev-tools/integration/.env index 17c5ef029..20ab4ea0c 100644 --- a/dev-tools/integration/.env +++ b/dev-tools/integration/.env @@ -1,4 +1,4 @@ -ELASTICSEARCH_VERSION=8.12.0-1a1295ff-SNAPSHOT +ELASTICSEARCH_VERSION=8.12.0-628b3b84-SNAPSHOT ELASTICSEARCH_USERNAME=elastic ELASTICSEARCH_PASSWORD=changeme TEST_ELASTICSEARCH_HOSTS=localhost:9200 From 05c686ea826a5d31b7640239a6949517239d6fec Mon Sep 17 00:00:00 2001 From: Michel Laterman <82832767+michel-laterman@users.noreply.github.com> Date: Tue, 14 Nov 2023 13:26:01 -0800 Subject: [PATCH 3/3] Remove internal/pkg/testing from sonarqube coverage (#3092) --- sonar-project.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonar-project.properties b/sonar-project.properties index 77df6476b..88f5e6d71 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -2,7 +2,7 @@ sonar.projectKey=elastic_fleet-server_AYpL8BsVaV3I-igkX4hx sonar.host.url=https://sonar.elastic.dev sonar.sources=. -sonar.exclusions=**/*_test.go, .git/**, dev-tools/**, /magefile.go, changelog/**, testing/**, **/*.gen.go +sonar.exclusions=**/*_test.go, .git/**, dev-tools/**, /magefile.go, changelog/**, testing/**, **/*.gen.go, internal/pkg/testing/** sonar.tests=. sonar.test.inclusions=**/*_test.go