view bitbucket-pipelines.yml @ 433:9d8aae30be98

cmp: Make memtable key comparisons ~4x faster. Similar to the internal key comparison improvement: Only parse expensive FixedInts when required. This change brings rusty-leveldb within 10% of the original for write-heavy workloads and 25% for iterating workloads.
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 22 Oct 2017 09:42:19 +0200
parents 033f06f09e7f
children 29d2b936b2f0
line wrap: on
line source

image: atlassianlabs/buildpack-deps-rust

pipelines:
  branches:
    default:
      - step:
          caches:
              - cargo
          script:
              - echo "Updates to rustup"                ; rustup self update
              - echo "Update Rust toolchain"            ; rustup update
              - echo "Build project"                    ; cargo build
              - echo "Run unit tests"                   ; cargo test --lib -v --no-fail-fast -- --nocapture --test

definitions:
    caches:
        cargo: target/