Azure DevOps bash脚本在PATH上看不到二进制文件

时间:2019-06-03 20:56:49

标签: bash azure-devops azure-pipelines-build-task azure-devops-self-hosted-agent

我正在尝试在自托管代理上运行的构建管道中执行Bash脚本。我遇到的错误是:

##[section]Starting: Bash
==============================================================================
Task         : Bash
Description  : Run a Bash script on macOS, Linux, or Windows
Version      : 3.148.2
Author       : Microsoft Corporation
Help         : [More Information](https://go.microsoft.com/fwlink/?LinkID=613738)
==============================================================================
Generating script.
[command]C:\WINDOWS\system32\bash.exe --noprofile --norc -c pwd
/mnt/c/agent/_work/1/s/utilities/Uncrustify
Formatted command: . '/mnt/c/agent/_work/1/s/utilities/Uncrustify/check.sh'
[command]C:\WINDOWS\system32\bash.exe --noprofile --norc -c pwd
/mnt/c/agent/_work/_temp
========================== Starting Command Output ===========================
[command]C:\WINDOWS\system32\bash.exe --noprofile --norc /mnt/c/agent/_work/_temp/146cb6ce-a7e9-48f6-b4f9-6cde2bf22685.sh
/mnt/c/agent/_work/1/s/utilities/Uncrustify/check.sh: line 27: uncrustify: command not found
##[error]Bash exited with code '127'.
##[error]Bash wrote one or more lines to the standard error stream.
##[section]Finishing: Bash

check.sh脚本只需运行unrustify:

#!/bin/bash

# Absolute path to this script, e.g. /home/user/bin/foo.sh
SCRIPT="$0"

# Absolute path this script is in, e.g. /home/user/bin/
SCRIPTPATH="$(dirname -- "$SCRIPT")"

# Relative path from this script to the top level of this repo.
GITREPO="$SCRIPTPATH/../.."

uncrustify --check -c "$GITREPO/.uncrustify.cfg" \
    $(find "$GITREPO" -name "*.c" -o -name "*.cpp" -o -name "*.cxx" -o -name "*.h" -o -name "*.hpp" -o -name "*.hxx")

azure-pipelines.yml中的bash任务是:

- task: Bash@3
  inputs:
    filePath: 'utilities/Uncrustify/check.sh'
    displayName: 'Verify coding standard compliance'
    failOnStderr: true

我已验证uncrustify.exe是否存在于/mnt/c/ProgramData/chocolatey/bin中的PATH上。我不确定自己在做什么错。我是否需要做一些特殊的事情以允许bash脚本调用PATH上可能存在的其他可执行文件?

1 个答案:

答案 0 :(得分:0)

经过大约一个小时的反复试验,解决方法是在shell脚本中显式指定扩展名。

uncrustify --check -c "$GITREPO/.uncrustify.cfg" \
    $(find "$GITREPO" -name "*.c" -o -name "*.cpp" -o -name "*.cxx" -o -name "*.h" -o -name "*.hpp" -o -name "*.hxx")

成为:

uncrustify.exe --check -c "$GITREPO/.uncrustify.cfg" \
    $(find "$GITREPO" -name "*.c" -o -name "*.cpp" -o -name "*.cxx" -o -name "*.h" -o -name "*.hpp" -o -name "*.hxx")

这是一件小事。在我的任何设置上手动执行时,这都不是问题。