set up buildbot

This commit is contained in:
Tian Jin 2019-12-23 16:53:08 -05:00
parent 6c1d0d42c5
commit 13f9c83397
1 changed files with 8 additions and 2 deletions

View File

@ -8,8 +8,14 @@ jobs:
- checkout
- run:
name: Greeting
command: echo Hello, world.
name: Set up MLIR.
command: |
git clone https://github.com/llvm/llvm-project.git
git clone https://github.com/tensorflow/mlir llvm-project/llvm/projects/mlir
mkdir llvm-project/build
cd llvm-project/build
cmake -G Ninja ../llvm -DLLVM_ENABLE_RTTI=ON -DLLVM_BUILD_EXAMPLES=OFF -DLLVM_TARGETS_TO_BUILD="host"
cmake --build . --target check-mlir
- run:
name: Print the Current Time