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.
29 lines
493 B
YAML
29 lines
493 B
YAML
groups:
|
|
main:
|
|
description: Main test group
|
|
components:
|
|
- ls
|
|
- currentdir
|
|
- envtest
|
|
components:
|
|
ls:
|
|
command: exa
|
|
tasks:
|
|
beforelist:
|
|
command: echo "before list"
|
|
currentdir:
|
|
command: pwd
|
|
envtest:
|
|
env:
|
|
FOO: one
|
|
command: "echo value: $FOO"
|
|
|
|
tasks:
|
|
sleep:
|
|
command: echo "sleeping"
|
|
build-release:
|
|
command: cargo build --release
|
|
install:
|
|
before: build-release
|
|
command: cp target/release/conductor ~/.local/bin/
|