fork of https://github.com/rust-rocksdb/rust-rocksdb for nextgraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
423 B
22 lines
423 B
language: rust
|
|
sudo: true
|
|
|
|
compiler:
|
|
- gcc
|
|
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -y gcc libgflags-dev libsnappy-dev zlib1g-dev libbz2-dev
|
|
- wget https://github.com/facebook/rocksdb/archive/rocksdb-3.8.tar.gz; tar xvf rocksdb-3.8.tar.gz && cd rocksdb-rocksdb-3.8 && make shared_lib; make install
|
|
|
|
rust:
|
|
- nightly
|
|
- 1.1.0
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
script:
|
|
- cargo build
|
|
- cargo test
|
|
|