Fix running travis on forked repos

If we're not on the official repo, link the directory structure around
so that go can still find the code.
2 files changed
tree: f6cc872d5e7d07612f6326fbd5f324472c790ed7
  1. bootstrap/
  2. bpfmt/
  3. bpmodify/
  4. deptools/
  5. gotestmain/
  6. parser/
  7. pathtools/
  8. proptools/
  9. .travis.fix-fork.sh
  10. .travis.yml
  11. Blueprints
  12. bootstrap.bash
  13. build.ninja.in
  14. context.go
  15. context_test.go
  16. CONTRIBUTING.md
  17. doc.go
  18. LICENSE
  19. live_tracker.go
  20. mangle.go
  21. module_ctx.go
  22. ninja_defs.go
  23. ninja_strings.go
  24. ninja_strings_test.go
  25. ninja_writer.go
  26. ninja_writer_test.go
  27. package_ctx.go
  28. README.md
  29. scope.go
  30. singleton_ctx.go
  31. splice_modules_test.go
  32. unpack.go
  33. unpack_test.go
README.md

Blueprint Build System

Build Status

Blueprint is a meta-build system that reads in Blueprints files that describe modules that need to be built, and produces a 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 still allowing simple changes to individual modules by modifying easy to understand Blueprints files.