Skip to content
Snippets Groups Projects
Commit 828e9b54 authored by Vickenty Fesunov's avatar Vickenty Fesunov
Browse files

Use explicit path for GNU find

Recent build of vs2017-win2016 image does not have GNU find in path.
Instead, Windows built-in version was invoked, causing `Find GCC libraries`
Azure CI stage to fail.
parent 9358be36
No related branches found
No related tags found
No related merge requests found
......@@ -45,9 +45,9 @@ steps:
- bash: |
set -ex
gcc -print-search-dirs
find "C:\ProgramData\Chocolatey" -name "crt2*"
find "C:\ProgramData\Chocolatey" -name "dllcrt2*"
find "C:\ProgramData\Chocolatey" -name "libmsvcrt*"
/usr/bin/find "C:\ProgramData\Chocolatey" -name "crt2*"
/usr/bin/find "C:\ProgramData\Chocolatey" -name "dllcrt2*"
/usr/bin/find "C:\ProgramData\Chocolatey" -name "libmsvcrt*"
condition: eq( variables['Agent.OS'], 'Windows_NT' )
displayName: Find GCC libraries (windows)
- bash: |
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment