Build system for resource management.
- Clone this repository.
- Move in root of cloned repository.
- *Create and activate virtual env.
- Install dependencies.
git clone [email protected]:Valentina-Gol/build_system.git
cd build_system
python3 -m venv env
source env/bin/activate
pip3 install -r requirements.txt
View uploaded task names:
python3 build_system.py --list tasks
View uploaded build names:
python3 build_system.py --list builds
View information about a task:
python3 build_system.py --get task <task_name>
View information about a build:
python3 build_system.py --get build <build_name>
python3 -m unittest tests/test_build_system.py