mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-14 16:03:41 +00:00
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.
This commit is contained in:
committed by
Ron Evans
parent
3f9609560e
commit
e830acadf3
+1
-1
@@ -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:
|
||||||
|
|||||||
Reference in New Issue
Block a user