Skip to main content

TaskContext.args

TaskContext.args: TaskArgs
Access to arguments provided by the caller.

TaskContext.bazel

TaskContext.bazel: bazel.Bazel
Access to Bazel functionality.

TaskContext.http

def TaskContext.http() -> Http
The http attribute provides a programmatic interface for making HTTP requests. It is used to fetch data from remote servers and can be used in conjunction with other aspects to perform complex data processing tasks. Example
**Fetch** data from a remote server
data = ctx.http().get("https://example.com/data.json").block()

TaskContext.std

TaskContext.std: std.Std
Standard library is the foundation of powerful AXL tasks.

TaskContext.template

TaskContext.template: Template
Expand template files.

TaskContext.wasm

TaskContext.wasm: wasm.Wasm
EXPERIMENTAL! Run wasm programs within tasks.