我有一个詹金斯管道,正在尝试扫描一个有角度的网站以查找声纳尔贝,并且遇到了以下错误:
ERROR: internal/modules/cjs/loader.js:582
ERROR: throw err;
ERROR: ^
ERROR:
ERROR: Error: Cannot find module 'typescript'
ERROR: at Function.Module._resolveFilename (internal/modules/cjs/loader.js:580:15)
ERROR: at Function.Module._load (internal/modules/cjs/loader.js:506:25)
ERROR: at Module.require (internal/modules/cjs/loader.js:636:17)
ERROR: at require (internal/modules/cjs/helpers.js:20:18)
ERROR: at Object.<anonymous> (D:\SonarQube\ajbic-client-app\.scannerwork\sonarts-bundle\node_modules\tslint\lib\language\walker\blockScopeAwareRuleWalker.js:20:10)
ERROR: at Module._compile (internal/modules/cjs/loader.js:688:30)
ERROR: at Object.Module._extensions..js (internal/modules/cjs/loader.js:699:10)
ERROR: at Module.load (internal/modules/cjs/loader.js:598:32)
ERROR: at tryModuleLoad (internal/modules/cjs/loader.js:537:12)
ERROR: at Function.Module._load (internal/modules/cjs/loader.js:529:3)
ERROR: Failed to find 'typescript' module. Please check, NODE_PATH contains location of global 'typescript' or install locally in your project
INFO: ------------------------------------------------------------------------
INFO: EXECUTION FAILURE
我在jenkins中的设置如下:
steps {
withSonarQubeEnv('Dev-build-01') {
bat "cd D:/SonarQube/abcd-webapp"
bat "rm -rf node_modules package-lock.json"
bat "npm install"
bat "C:/Jenkins/tools/hudson.plugins.sonar.SonarRunnerInstallation/SonarQubeScanner/Net/bin/sonar-scanner.bat -D sonar.projectKey=abcd-webapp -D sonar.sources=src -D sonar.login=667723c08ecfe0fc0d5c0e91bdd5c4b219e851e7 -D sonar.projectBaseDir=D:/SonarQube/abcd-webapp"
}
timeout(time: 60, unit: 'MINUTES') {
// waitForQualityGate abortPipeline: true
}
}
}
我已经完成了通常的工作,安装了打字稿(通过npm下载并通过npm),但是每次遇到相同的错误时,我都会这样做。 同样发生的一件奇怪的事情是,当我删除舞台并保存时,管道仍在进行分析。
任何人都知道该怎么做?
谢谢
答案 0 :(得分:0)
经过几个小时的思考,我来到了解决方案,然后让我解释原因。该项目是从git(bitbucket)下载的,在该解决方案中,我们永远不允许签入node_modules。因此,在这种情况下,node_modules不存在。第二个问题(这是我无法控制的),没有安装bash命令的实例,而是有人决定安装powershell插件,我必须处理它。 解决方案是在脚本中添加powershell,最终结果是
steps {
withSonarQubeEnv('Dev-build-01') {
powershell '''
cd D:/SonarQube/abcd-webapp
rmdir /q/s node_modules
del package-lock.json
npm install
'''
bat "C:/Jenkins/tools/hudson.plugins.sonar.SonarRunnerInstallation/SonarQubeScanner/Net/bin/sonar-scanner.bat -D sonar.projectKey=abcd-webapp -D sonar.sources=src -D sonar.login=667723c08ecfe0fc0d5c0e91bdd5c4b219e851e7 -D sonar.projectBaseDir=D:/SonarQube/abcd-webapp"
}
timeout(time: 60, unit: 'MINUTES') {
// waitForQualityGate abortPipeline: true
}
}
}
最后我的管道被固定了。