You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
360 B
YAML

version: "3"
tasks:
build-ebpf:
desc: "Build the eBPF program"
cmds:
- cargo run
install-ebpf:
desc: "Install the eBPF program"
cmds:
- go run main.go {{ "{{ .IFACE }}" }}
dir: {{project-name}}-go
deps:
- build-ebpf
default:
desc: "Build and install the eBPF program"
cmds:
- task: install-ebpf