a2cd69899f
Update .travis.yml to specify go 1.5.1, and update build.ninja.in to include the new in line function names used by go 1.5.
24 lines
392 B
YAML
24 lines
392 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.5.1
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/ninjabin
|
|
|
|
install:
|
|
- ./.travis.install-ninja.sh
|
|
- export PATH=$PATH:~/ninjabin
|
|
|
|
before_script:
|
|
- source .travis.fix-fork.sh
|
|
|
|
script:
|
|
- go test ./...
|
|
- mkdir stage
|
|
- cd stage
|
|
- ../bootstrap.bash
|
|
- ninja
|
|
- diff -us ../build.ninja.in .bootstrap/bootstrap.ninja.in
|
|
- ../tests/test.sh
|