Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/scan-sonar-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ permissions:
jobs:
scan-sonar:
name: "Sonar Cloud"
runs-on: [ubuntu-22.04]
runs-on: [ledger-live-4xlarge]
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
Expand All @@ -39,7 +39,7 @@ jobs:
uses: LedgerHQ/ledger-live/tools/actions/composites/setup-caches@develop
id: setup-caches
with:
install-proto: true
install-proto: false
skip-turbo-cache: "false"
accountId: ${{ secrets.AWS_ACCOUNT_ID_PROD }}
roleName: ${{ secrets.AWS_CACHE_ROLE_NAME }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sonar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Scan LLM && LLD & Libs
env:
NODE_OPTIONS: "--max-old-space-size=7168"
runs-on: [ledger-live-linux-8CPU-32RAM]
runs-on: [ledger-live-4xlarge]
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
Expand All @@ -32,7 +32,7 @@ jobs:
id: caches
with:
skip-turbo-cache: "false"
install-proto: true
install-proto: false
accountId: ${{ secrets.AWS_ACCOUNT_ID_PROD }}
roleName: ${{ secrets.AWS_CACHE_ROLE_NAME }}
region: ${{ secrets.AWS_CACHE_REGION }}
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ sonar.javascript.lcov.reportPaths=lcov.info
sonar.testExecutionReportPaths=sonar-executionTests-report.xml
sonar.typescript.tsconfigPaths=tsconfig.base.json,apps/**/tsconfig.json,e2e/**/tsconfig.json
sonar.organization=ledger
sonar.javascript.node.maxspace=16384
sonar.javascript.node.maxspace=24576
sonar.c.file.suffixes=-
sonar.cpp.file.suffixes=-
sonar.objc.file.suffixes=-
Expand Down
6 changes: 5 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"$schema": "https://turborepo.org/schema.json",
"daemon": false,
"globalDependencies": ["turbo.json", "tsconfig.base.json"],
"globalDependencies": [
"turbo.json",
"tsconfig.base.json",
"sonar-project.properties"
],
"globalEnv": [
"ANDROID_HOME",
"ANDROID_KEYSTORE_FILE",
Expand Down
Loading