小编Ath*_*tia的帖子

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

我正在为 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 …
Run Code Online (Sandbox Code Playgroud)

python azure-devops azure-pipelines

7
推荐指数
1
解决办法
1万
查看次数

标签 统计

azure-devops ×1

azure-pipelines ×1

python ×1