platform_build_blueprint/.travis.yml
Dan Willemsen f04c55172f Add test suite for bootstrapping
This only checks to make sure that for a given updated file, the
bootstrap stage is properly run. It doesn't actually check to make sure
that anything was rebuilt.

Change-Id: I9cb6ff1d483264da30e43d5580361d93b148f42c
2015-07-23 22:04:42 -07:00

14 lines
284 B
YAML

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
- ../tests/test.sh