├── .travis.yml ├── README.md └── build-api.md /.travis.yml: -------------------------------------------------------------------------------- 1 | # We're just using a "stubbed out" Travis right now so we can 2 | # use Homu to auto-squash 3 | # etc. 4 | language: c 5 | install: true 6 | script: test '!' -f broken.txt 7 | 8 | notifications: 9 | webhooks: http://escher.verbum.org:54856/travis 10 | email: false 11 | 12 | branches: 13 | only: 14 | - auto 15 | 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | build-api.md -------------------------------------------------------------------------------- /build-api.md: -------------------------------------------------------------------------------- 1 | # Obsolete 2 | 3 | This specification is obsolete and is not recommended for use anymore. 4 | 5 | For the previous spec, please see the commit history. 6 | 7 | --------------------------------------------------------------------------------