Add .travis.yml to configure CI

This commit is contained in:
Jamie Gennis 2015-03-21 01:53:30 -04:00
parent 6cafc2cddc
commit aefb6570ee
2 changed files with 18 additions and 4 deletions

13
.travis.yml Normal file
View file

@ -0,0 +1,13 @@
language: go
install:
- sudo apt-get install ninja-build
script:
- go test ./...
- cp build.ninja.in build.ninja.in.orig
- mkdir stage
- cd stage
- ../bootstrap.bash
- ninja
- diff -us ../build.ninja.in ../build.ninja.in.orig

View file

@ -1,11 +1,12 @@
Blueprint Build System
======================
[![Build Status](https://travis-ci.org/google/blueprint.svg?branch=master)](https://travis-ci.org/google/blueprint)
Blueprint is a meta-build system that reads in Blueprints files that describe
modules that need to be built, and produces a Ninja
(http://martine.github.io/ninja/) manifest describing the commands that need to
be run and their dependencies. Where most build systems use built-in rules or
a domain-specific language to describe the logic for converting module
modules that need to be built, and produces a
[Ninja](http://martine.github.io/ninja/) manifest describing the commands that
need to be run and their dependencies. Where most build systems use built-in
rules or a domain-specific language to describe the logic for converting module
descriptions to build rules, Blueprint delegates this to per-project build
logic written in Go. For large, heterogenous projects this allows the inherent
complexity of the build logic to be maintained in a high-level language, while