f04c55172f
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
14 lines
284 B
YAML
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
|