commands: make: !Command description: Build netbuf library container: ubuntu run: [cargo, build] test: !Command description: Test netbuf library container: ubuntu environ: RUST_BACKTRACE: 1 run: [cargo, test] coverage: !Command description: Run coverage tests for netbuf library container: ubuntu environ: RUST_BACKTRACE: 1 run: | cargo test --no-run rm -rf target/cov kcov target/cov target/debug/netbuf-638268726e961e5a _bulk: !Command description: Run `bulk` command (for version bookkeeping) container: ubuntu run: [bulk] cargo: !Command description: Run any cargo command container: ubuntu run: [cargo] docs: !Command description: Generate documentation container: ubuntu run: [cargo, doc] containers: ubuntu: setup: - !Ubuntu xenial - !UbuntuUniverse - !Install [make, wget, ca-certificates, vim, libssl-dev, build-essential] - !TarInstall url: "https://static.rust-lang.org/dist/rust-1.25.0-x86_64-unknown-linux-gnu.tar.gz" script: "./install.sh --prefix=/usr \ --components=rustc,rust-std-x86_64-unknown-linux-gnu,cargo" - !BuildDeps [libcurl4-openssl-dev, libelf-dev, libdw-dev, cmake, python, pkg-config] - !Install [libdw1, libelf1, libcurl3] - &bulk !Tar url: "https://github.com/tailhook/bulk/releases/download/v0.4.11/bulk-v0.4.11.tar.gz" sha256: b718bb8448e726690c94d98d004bf7575f7a429106ec26ad3faf11e0fd9a7978 path: / - !GitInstall url: git://github.com/SimonKagstrom/kcov script: | cmake . make make install environ: HOME: /work/target nightly: setup: - !Ubuntu xenial - !UbuntuUniverse - !Install [make, wget, ca-certificates, libssl-dev, build-essential] - !TarInstall url: "http://static.rust-lang.org/dist/rust-nightly-x86_64-unknown-linux-gnu.tar.gz" script: "./install.sh --prefix=/usr --components=rustc,cargo" environ: HOME: /work/target