Azure Devops 管道 ArchiveFiles 错误:无法找到可执行文件:“zip”

Ath*_*tia 7 python azure-devops azure-pipelines

我正在为 python 包构建创建 Azure DevOps 管道,但任务 ArchiveFiles@2 失败。

- stage: Build
  jobs:
    - job: BuildApp
      pool:
        vmImage: 'ubuntu-latest'
      - task: ArchiveFiles@2
        inputs:
          rootFolderOrFile: '$(Build.SourcesDirectory)'
          includeRootFolder: false
          archiveType: 'zip'
          archiveFile: '$(Build.ArtifactStagingDirectory)/$(Build.BuildId).zip'
          replaceExistingArchive: true
          verbose: true
Run Code Online (Sandbox Code Playgroud)

错误日志是这样的

Found 20 files
Archiving file: .env_sample
... 21 more ...

##[debug]Checking for archive destination folder:/__w/1/a
##[debug]Creating archive with zip: /__w/1/a/1009007.zip
##[debug]which 'zip'
##[debug]not found
##[debug]Unable to locate executable file: 'zip'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.

Run Code Online (Sandbox Code Playgroud)

Dan*_*ann 8

代理上没有zip安装该命令。您需要确保该zip软件包已安装。IEsudo apt-get -y install zip