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.
43 lines
932 B
43 lines
932 B
5 years ago
|
name: RocksDB build
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
test-librocksdb-sys:
|
||
|
name: Test librocksdb-sys crate
|
||
|
runs-on:
|
||
|
- windows-latest
|
||
|
steps:
|
||
|
- name: Checkout sources
|
||
|
uses: actions/checkout@v2
|
||
|
with:
|
||
|
submodules: true
|
||
|
|
||
|
- name: Install dependencies
|
||
|
run: choco install llvm -y
|
||
|
|
||
|
- name: Run librocksdb-sys tests
|
||
|
uses: actions-rs/cargo@v1
|
||
|
with:
|
||
|
command: test
|
||
|
args: --manifest-path=librocksdb-sys/Cargo.toml
|
||
|
|
||
|
test-rocksdb:
|
||
|
name: Test rocksdb crate
|
||
|
runs-on:
|
||
|
- windows-latest
|
||
|
steps:
|
||
|
- name: Checkout sources
|
||
|
uses: actions/checkout@v2
|
||
|
with:
|
||
|
submodules: true
|
||
|
|
||
|
- name: Install dependencies
|
||
|
run: choco install llvm -y
|
||
|
|
||
|
- name: Run rocksdb tests
|
||
|
uses: actions-rs/cargo@v1
|
||
|
with:
|
||
|
command: test
|
||
|
args: -- --skip test_iterator_outlive_db
|