Resolve buildbot issue. (#64)
* 1. Try limit parallelism. * Limit build parallelism to 4. * Fix doc-check failure. Co-authored-by: Gheorghe-Teodor Bercea <gt.bercea@gmail.com>
This commit is contained in:
parent
2b56c09454
commit
5791cfdce7
|
@ -25,6 +25,7 @@ jobs:
|
|||
# Check whether cache restoration succeeds by checking whether
|
||||
# mlir-opt executable exists.
|
||||
if [ ! -f llvm-project/build/bin/mlir-opt ]; then
|
||||
export MAKEFLAGS=-j4
|
||||
source ONNF/utils/install-mlir.sh
|
||||
fi
|
||||
- save_cache:
|
||||
|
|
|
@ -20,7 +20,7 @@ cmake -G Ninja ../llvm \
|
|||
-DLLVM_ENABLE_ASSERTIONS=ON \
|
||||
-DLLVM_ENABLE_RTTI=ON
|
||||
|
||||
cmake --build . --target
|
||||
cmake --build . --target -- ${MAKEFLAGS}
|
||||
cmake --build . --target check-mlir
|
||||
```
|
||||
|
||||
|
|
|
@ -9,5 +9,5 @@ cmake -G Ninja ../llvm \
|
|||
-DLLVM_ENABLE_ASSERTIONS=ON \
|
||||
-DLLVM_ENABLE_RTTI=ON
|
||||
|
||||
cmake --build . --target
|
||||
cmake --build . --target -- ${MAKEFLAGS}
|
||||
cmake --build . --target check-mlir
|
Loading…
Reference in New Issue