mirror of
https://github.com/AuxXxilium/arc.git
synced 2024-11-23 20:49:52 +07:00
23 lines
294 B
YAML
23 lines
294 B
YAML
# https://taskfile.dev
|
|
|
|
version: '3'
|
|
|
|
tasks:
|
|
build-img:
|
|
cmds:
|
|
- ./img-gen.sh
|
|
|
|
build-docker-img:
|
|
dir: docker
|
|
cmds:
|
|
- ./build.sh
|
|
|
|
compile-lkms:
|
|
cmds:
|
|
- ./compile-lkm.sh
|
|
|
|
compile-addons:
|
|
dir: addons
|
|
cmds:
|
|
- ./compile-addons.sh {{.CLI_ARGS}}
|