Awesome
NaCl
NaCl is a configuration language for IncludeOS that you can use to add for example interfaces and firewall rules to your service.
Documentation: http://includeos.readthedocs.io/en/latest/NaCl.html
- Install antlr4 exactly like described under Quick start: http://www.antlr.org/
pip install antlr4-python2-runtime
pip install pystache
- Generate python parser / lexer for
NaCl.g4
grammar WITH visitor (NaClVisitor.py):antlr4 -Dlanguage=Python2 NaCl.g4 -visitor
- Make transpiler program executable:
chmod u+x NaCl.py
- run with
cat examples/nacl.nacl | ./NaCl.py
- For testing, using the
grun
program (alias really) is nice. This requires that you generate the java lexer / parser antlr4 NaCl.g4 && javac NaCl*.java
cat examples/nacl.nacl | grun NaCl prog -gui
NaCl Packages
The latest packages for NaCl can be found on Bintray
Creating NaCl conan package
The conanfile.py contains the recipe for building a conan package.
You can set up your remotes and profiles from conan_config
To build the NaCl package:
conan create <path to NaCl repo> includeos/latest -pr <profile name>
To upload the package:
conan upload --all -r includeos NaCl/<version>@includeos/<channel>
Note: To get the NaCl package into editable mode for development checkout editable_packages
Packages are uploaded to two channels:
latest
: the latest uploadstable
: the last stable upload
Note: For more information checkout the Jenkinsfile