mirror of
https://github.com/go-task/task.git
synced 2024-12-14 10:52:43 +02:00
68ce8642b1
Also, fix "<no value>" been printed when a non-existing variable is printed.
34 lines
499 B
YAML
34 lines
499 B
YAML
version: '3'
|
|
|
|
vars:
|
|
BAZ:
|
|
sh: echo baz
|
|
|
|
env:
|
|
FOO: foo
|
|
BAR: bar
|
|
BAZ: "{{.BAZ}}"
|
|
|
|
tasks:
|
|
default:
|
|
cmds:
|
|
- task: local
|
|
- task: global
|
|
|
|
local:
|
|
vars:
|
|
AMD64: amd64
|
|
env:
|
|
GOOS: linux
|
|
GOARCH: "{{.AMD64}}"
|
|
CGO_ENABLED:
|
|
sh: echo '0'
|
|
cmds:
|
|
- echo "GOOS='$GOOS' GOARCH='$GOARCH' CGO_ENABLED='$CGO_ENABLED'" > local.txt
|
|
|
|
global:
|
|
env:
|
|
BAR: overriden
|
|
cmds:
|
|
- echo "FOO='$FOO' BAR='$BAR' BAZ='$BAZ'" > global.txt
|