Open source build system for biitle.nl projects
Ox is biitle.nl's build system for projects such as FluidServer and Libracino. It makes it easy to clone and start working on one of our projects.
Ox has 3 commands:
run: Run scriptsrecommend: Recommend softwareclone: Clone git repositories
The .ox directory is the directory that contains all your scripts.
A script is a file that can be inside the .ox directory or another folder inside.
Usage: ox run <SCRIPT> [SUBSCRIPT] [EXTRAS]...
The run command runs a script inside the .ox directory.
Usage: ox clone [OPTIONS] <REPOSITORY> [EXTRAS]...
The clone command is just an alias for
git clone <REPOSITORY> --recurse-submodules -j<threads> [EXTRAS]....
Built by clue <lost@biitle.nl>.
Distributed under the MIT license.
You will need to have cargo installed to build and test.
- Fork the repo (
https://github.com/biitlenl/ox) - Create your feature branch (
git checkout -b feature/yournewfeature) - Commit your changes (
git commit -am 'Add some change') - Push to the branch (
git push origin feature/yournewfeature) - Create a new pull request
SPDX-License-Identifier: MIT or Apache-2.0