Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 1.34 KB

README.md

File metadata and controls

36 lines (25 loc) · 1.34 KB

Object Graph Qualification Language travis

This library implements a parser for the query syntax described in the OGQL specification, which can be found here.

Important Note

The specification is currently under review and whilst this library is undergoing refactoring to implement changes, the travis-build may be broken for a while. Once the specification reaches version 0.1.0, this library will begin to mirror the version increment semantics of the specification.

License

The library is distributed under a permissive, BSD-like license.

Building from source

You will need Erlang/OTP and a custom branch/fork of rebar, which can be found here.

$ rebar -C init.config get-deps compile
$ rebar -C build.config compile
$ # run the samples...
$ escript qt.erl

Running the tests

Because of some odd behaviour as part of the build for delegate, you will also need to set the number of parallel build jobs to 1 in order to ensure a clean run.

$ ./rebar -C init.config get-deps
$ ./rebar -C test.config get-deps compile unittest -v jobs=1