我需要将Js文件压缩为Azure DevOps格式的gz格式。我已经使用Azure内置存档任务来zip文件,但是只有tar.gz可用。我只想要gz。命令,需要运行的命令是
7z.exe a -tgzip $targetFile $sourceFile有没有办法在Azure DevOps中做到这一点。
发布于 2020-09-17 17:29:22
7zip似乎是在托管管道映像上配置的一个工具。您只需创建一个包装所需调用的PowerShell任务即可。
使用windows-2019映像的示例YML片段:
- task: PowerShell@2
inputs:
targetType: 'inline'
script: '& 7z.exe a -tgzip $(Build.StagingDirectory) $(Build.SourcesDirectory)\README.md'记录任务的日志:
Starting: PowerShell
==============================================================================
Task : PowerShell
Description : Run a PowerShell script on Linux, macOS, or Windows
Version : 2.170.1
Author : Microsoft Corporation
Help : https://learn.microsoft.com/azure/devops/pipelines/tasks/utility/powershell
==============================================================================
Generating script.
========================== Starting Command Output ===========================
"C:\windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'D:\a\_temp\a5e0fcab-474f-4462-9a92-36185caa17a8.ps1'"
7-Zip 19.00 (x64) : Copyright (c) 1999-2018 Igor Pavlov : 2019-02-21
Scanning the drive:
1 file, 985 bytes (1 KiB)
Creating archive: D:\a\1\a.gz
Add new data to archive: 1 file, 985 bytes (1 KiB)
Files read from disk: 1
Archive size: 562 bytes (1 KiB)
Everything is Ok
Finishing: PowerShellhttps://stackoverflow.com/questions/63943184
复制相似问题