在Azure Pipelines上安装程序

时间:2019-05-24 03:32:56

标签: azure azure-pipelines

因此我已经使用Azure Pipelines设置了一些配置项,一切都很好,除了我想添加一些检查内存错误的方法(就像我目前在Travis上一样)。在Travis中,我可以写:

addons:
  apt:
    packages:
- valgrind

,它将为我安装valgrind。我一直无法在Azure Pipelines上找到等效功能,但是必须有一种方法可以做到这一点。

我已经徒劳地搜索了他们的文档,将不胜感激。

1 个答案:

答案 0 :(得分:1)

在脚本任务中,您自己运行所需的命令。看起来您正在使用Hosted Ubuntu代理。

let head = [

      {id:{content: 'Data', colSpan: 5, styles: {halign: 'center', fillColor: [22, 160, 133]}}},

      {id:'ID', name:'Name', email:'Email', city:'City', expenses:'Sum'}
]

(编写时未进行语法验证,您可能需要对此进行一些调整)。

类似于how I installed all required dependencies for Cypress on the Hosted Agent