NPM error on latest SonarScanner CLI: v6.1.0.4477

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?

Hey there!

Can you check which version of the GitHub - SonarSource/sonar-scanner-npm: SonarQube Scanner for the JavaScript world you’re using? Is it the latest, 4.2.2?

1 Like

Hi, thanks for the answer. The version in package.json is 3.1.0
Do you think is it related to version of sonar-scanner for npm? But CLI was working properly except the latest version.

I do expect different behavior, as the Scanner for NPM was largely rewritten in v4.0.

1 Like

Yeah, I updated “sonarqube-scanner”: “^4.0.1” now it don’t use CLI and use another method for sonar analysis. Thank you.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.