Skip to content

Commit c00c6b6

Browse files
author
Yucong Sun
committed
Adding circleci integration
1 parent c84476a commit c00c6b6

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.circleci/config.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
version: 2.0
2+
3+
jobs:
4+
build:
5+
docker:
6+
- image: circleci/rust:stretch
7+
steps:
8+
- checkout
9+
- run:
10+
name: Setup
11+
command: |
12+
apt update -y
13+
apt install -y cmake build-essential
14+
- run:
15+
name: Build libra-dev
16+
working_directory: libra-dev
17+
command: |
18+
cargo build
19+
- run:
20+
name: Build everything else
21+
command: |
22+
mkdir build
23+
cd build

0 commit comments

Comments
 (0)