ci: fix Windows build failure for wasi-libc

The wasi-libc Makefile uses the `find` command line tool. Unfortunately,
it was using the Windows find version instead of the MinGW version,
leading to lots of errors at a later stage.

This commit prepends /usr/bin to `$PATH` to make sure the MinGW version
is found first.
Этот коммит содержится в:
Ayke van Laethem 2020-01-25 12:48:14 +01:00 коммит произвёл Ron Evans
родитель 3f9609560e
коммит e830acadf3

Просмотреть файл

@ -54,7 +54,7 @@ jobs:
displayName: Build wasi-libc displayName: Build wasi-libc
inputs: inputs:
targetType: inline targetType: inline
script: make wasi-libc CLANG=$PWD/llvm-build/bin/clang LLVM_AR=$PWD/llvm-build/bin/llvm-ar LLVM_NM=$PWD/llvm-build/bin/llvm-nm script: PATH=/usr/bin:$PATH make wasi-libc CLANG=$PWD/llvm-build/bin/clang LLVM_AR=$PWD/llvm-build/bin/llvm-ar LLVM_NM=$PWD/llvm-build/bin/llvm-nm
- task: Bash@3 - task: Bash@3
displayName: Test TinyGo displayName: Test TinyGo
inputs: inputs: