view bitbucket-pipelines.yml @ 192:db1e88c8f364

merging_iter,test_util: fix iterator behaviors. This will be continued soon; tl;dr: before-first and after-last positioned iterators are always invalid.
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 27 Aug 2017 20:46:39 +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/