view bitbucket-pipelines.yml @ 446:24e076b4ad21

Change str/String to Path/PathBuf for filenames
author Vitaly "_Vi" Shukela <vi0oss@gmail.com>
date Wed, 28 Feb 2018 04:14:50 +0300
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/