[sonarqube] update memory, cpu (#190547)

Fixes a misplaced comma, bumps the node memory to half of the container.

https://buildkite.com/elastic/kibana-sonarqube/builds/12
This commit is contained in:
Jon 2024-09-09 16:16:30 -05:00 committed by GitHub
parent 3d8fad56f2
commit 3f14fcad56
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 4 deletions

View file

@ -6,4 +6,7 @@ steps:
agents:
image: docker.elastic.co/cloud-ci/sonarqube/buildkite-scanner:latest
memory: 32G
cpu: 4
env:
SONAR_SCANNER_JAVA_OPTS: '-Xmx16384m'
command: /scan-source-code.sh

View file

@ -1,7 +1,7 @@
sonar.projectKey=elastic_kibana_AYvOkAHeQZlFqhqWIr9Y
sonar.projectName=Kibana
sonar.host.url=https://sonar.elastic.dev
sonar.sourceEncoding=UTF-8
sonar.sources=\
packages, \
src, \
@ -45,10 +45,11 @@ sonar.exclusions=\
**/test_data/**/*, \
**/test_mocks.ts, \
**/test_resources/**/*, \
**/test_helpers/**/*, \
**/tests/**/*, \
src/dev/**/*, \
x-pack/plugins/*/scripts/**/*, \
src/plugins/*/scripts/**/*, \
packages/*/scripts/**/*,
sonar.javascript.node.maxspace=8192
packages/*/scripts/**/*
sonar.coverage.exclusions=**
sonar.javascript.node.maxspace=16384