onnx-mlir/.circleci/config.yml

42 lines
1.3 KiB
YAML
Raw Normal View History

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:
- checkout
2019-12-24 13:51:23 +08:00
- run:
name: Pull Submodules
2019-12-24 13:51:23 +08:00
command: |
git submodule update --init --recursive
- run:
name: Installing GCC, CMake, Ninja, Protobuf
command: sudo apt-get update && sudo apt-get install -y gcc g++ cmake ninja-build protobuf-compiler
# Use cached mlir installation if possible.
2019-12-24 13:09:31 +08:00
- restore_cache:
key: V2-LLVM-PROJECT-{{ arch }}
2019-12-24 05:33:08 +08:00
- run:
name: Install MLIR
2019-12-24 05:53:08 +08:00
command: |
# 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
export MAKEFLAGS=-j4
source .circleci/install-mlir.sh
2019-12-24 13:09:31 +08:00
fi
- save_cache:
key: V2-LLVM-PROJECT-{{ arch }}
2019-12-24 13:09:31 +08:00
paths:
- llvm-project
- run:
name: Install ONNF
command: |
2019-12-24 13:46:32 +08:00
mkdir build && cd build
LLVM_PROJ_SRC=$(pwd)/../llvm-project/ LLVM_PROJ_BUILD=$(pwd)/../llvm-project/build cmake ..
2019-12-24 16:25:07 +08:00
make all
2019-12-24 16:15:49 +08:00
LIT_OPTS=-v make check-mlir-lit
2019-12-24 05:33:08 +08:00
- run:
name: Print the Current Time
command: date