2019-12-24 05:33:08 +08:00
|
|
|
version: 2
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
docker:
|
2019-12-24 06:03:22 +08:00
|
|
|
- image: circleci/python
|
2019-12-24 05:33:08 +08:00
|
|
|
|
|
|
|
steps:
|
2019-12-24 07:19:55 +08:00
|
|
|
- run:
|
2019-12-31 14:45:32 +08:00
|
|
|
name: Installing GCC, CMake, Ninja, Protobuf
|
2020-01-01 02:28:26 +08:00
|
|
|
command: sudo apt-get update && sudo apt-get install -y gcc g++ cmake ninja-build protobuf-compiler
|
2019-12-31 14:45:32 +08:00
|
|
|
# Use cached mlir installation if possible.
|
2019-12-24 13:09:31 +08:00
|
|
|
- restore_cache:
|
2020-01-01 02:28:26 +08:00
|
|
|
key: V2-LLVM-PROJECT-{{ arch }}
|
2019-12-24 05:33:08 +08:00
|
|
|
- run:
|
2019-12-24 07:19:55 +08:00
|
|
|
name: Install MLIR
|
2019-12-24 05:53:08 +08:00
|
|
|
command: |
|
2019-12-31 14:45:32 +08:00
|
|
|
# Check whether cache restoration succeeds by checking whether
|
|
|
|
# mlir-opt executable exists.
|
2019-12-24 13:48:42 +08:00
|
|
|
if [ ! -f llvm-project/build/bin/mlir-opt ]; then
|
2020-01-01 02:28:26 +08:00
|
|
|
export MAKEFLAGS=-j4
|
2020-01-10 07:35:52 +08:00
|
|
|
source utils/install-mlir.sh
|
2019-12-24 13:09:31 +08:00
|
|
|
fi
|
|
|
|
- save_cache:
|
2020-01-01 02:28:26 +08:00
|
|
|
key: V2-LLVM-PROJECT-{{ arch }}
|
2019-12-24 13:09:31 +08:00
|
|
|
paths:
|
|
|
|
- llvm-project
|
2020-01-10 07:35:52 +08:00
|
|
|
- checkout:
|
|
|
|
path: ONNF
|
2019-12-24 13:09:31 +08:00
|
|
|
- run:
|
2020-01-10 07:35:52 +08:00
|
|
|
name: Pull Submodules
|
2019-12-24 13:09:31 +08:00
|
|
|
command: |
|
2020-01-10 07:35:52 +08:00
|
|
|
cd ONNF
|
|
|
|
git submodule update --init --recursive
|
|
|
|
- run:
|
|
|
|
name: Install ONNF
|
|
|
|
command: source ONNF/utils/install-onnf.sh
|
|
|
|
- run:
|
|
|
|
name: Run DocCheck
|
|
|
|
command: cd ONNF/build && cmake --build . --target check-doc
|
2019-12-24 05:33:08 +08:00
|
|
|
- run:
|
|
|
|
name: Print the Current Time
|
|
|
|
command: date
|