Hi everyone,
I use SonarScanner CLI for my npm projects. I use this env variable to define the version of scanner-cli:
process.env.SONAR_SCANNER_VERSION = “6.0.0.4432”
It’s working with v6.0 but from v6.1 (6.1.0.4477) because there is “x64” at the end of URL, npm cannot find the right URL for download.
For example the links for windows scanner for these 2 versions are:
https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-6.0.0.4432-windows.zip
https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-6.1.0.4477-windows-x64.zip
When Is set env variable for the latest version (6.1.0.4477), I receive this error:
[INFO] — frontend:1.6:npm (npm sonar) @ testApp —
[INFO] Running ‘npm run sonar’ in C:\Users\admin\Git\test
[INFO]
[INFO] > test@1.0.0 sonar
[INFO] > node sonar-project.js
[INFO]
[INFO] [14:37:21] Starting analysis…
[INFO] [14:37:21] Getting info from “package.json” file
[INFO] [14:37:21] Checking if executable exists: C:\Users\admin.sonar\native-sonar-scanner\sonar-scanner-6.1.0.4477-windows\bin\sonar-scanner.bat
[INFO] [14:37:21] Could not find executable in “C:\Users\admin.sonar\native-sonar-scanner”.
[INFO] [14:37:21] Proceed with download of the platform binaries for SonarScanner…
[INFO] [14:37:21] Creating C:\Users\admin.sonar\native-sonar-scanner
[INFO] [14:37:21] Downloading from https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-6.1.0.4477-windows.zip
[INFO] [14:37:21] (executable will be saved in cache folder: C:\Users\admin.sonar\native-sonar-scanner)
[ERROR] [14:37:21] ERROR: impossible to download and extract binary: Response status was 403
[ERROR] [14:37:21] SonarScanner binaries probably don’t exist for your OS (windows).
[ERROR] [14:37:21] In such situation, the best solution is to install the standard SonarScanner (requires a JVM).
[ERROR] [14:37:21] Check it out at SonarScanner CLI
It tries to generate the URL like the old versions without x64 at the end. Is there any solution for this problem?