Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 558 Bytes

File metadata and controls

28 lines (18 loc) · 558 Bytes

bazel-example

Hello, check these bazel concepts to start:

https://bazel.build/concepts/build-ref

Installing in ubuntu

https://bazel.build/install/ubuntu

Running some targets

# To test the python library
bazel test //libs/printer/tests:test_message

# To build the python library
bazel build //libs/printer:printer

# To run the library
bazel run //important_project:important -- -m "tutui"

# To run the image created
bazel run //important_project:py_image

# To run using the custom rule
bazel run //important_project:print_anything