我正在使用Azure Stream Analytics CI/CD npm包https://docs.microsoft.com/en-us/azure/stream-analytics/cicd-tools?tabs=visual-studio-code来构建一个项目。我在yaml管道中添加了以下步骤:
- task: Npm@1
displayName: 'Install Stream Analytics CI/CD package'
inputs:
command: 'custom'
customCommand: 'install -g azure-streamanalytics-cicd'
- task: CmdLine@2
displayName: 'Build Stream Analytics project'
inputs:
script: 'azure-streamanalytics-cicd build -project $(projectPath)/src/StreamJobs/StreamJobs.asaproj -outputpath $(build.artifactstagingdirectory)/StreamJobs'但build stream Analytics项目步骤在以下日志中出错:
enter image description here,有人能纠正我吗?
发布于 2021-06-29 15:39:30
有一个新的npm包可用https://www.npmjs.com/package/azure-streamanalytics-cicd来解决在Windows镜像上运行时的一些问题,也许这也会对你的问题有所帮助。
https://stackoverflow.com/questions/68024248
复制相似问题