summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorRyo Onodera <ryoqun@gmail.com>2021-04-06 20:52:17 +0900
committerGitHub <noreply@github.com>2021-04-06 14:52:17 +0300
commit0b700fe70da8ee30483fde79f44df549f8fe11ec (patch)
tree16bbf60f913de7dd1f58019a46a8a1d9346728fd /.github
parentbc59596da15867510133d60822e615ef6e3a1ca4 (diff)
Remove need for &mut self in create_cf and drop_cf (v2) (#506)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/rust.yml9
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 3c75a87..a21299f 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -88,7 +88,14 @@ jobs:
with:
command: test
args: --manifest-path=librocksdb-sys/Cargo.toml
- - name: Run rocksdb tests
+ - name: Run rocksdb tests (single-threaded cf)
uses: actions-rs/cargo@v1
with:
command: test
+ - name: Run rocksdb tests (multi-threaded cf)
+ uses: actions-rs/cargo@v1
+ env:
+ RUSTFLAGS: -Awarnings # Suppress "variable does not need to be mutable" warnings
+ with:
+ command: test
+ args: --features multi-threaded-cf