2020-02-15 16:40:42 +03:00
|
|
|
version: '3'
|
2018-10-13 16:56:51 -03:00
|
|
|
|
|
|
|
includes:
|
|
|
|
included: ./included
|
2018-10-13 17:52:09 -03:00
|
|
|
included_taskfile: ./Taskfile2.yml
|
2020-01-29 11:25:11 +03:00
|
|
|
included_without_dir:
|
|
|
|
taskfile: ./module1
|
|
|
|
included_taskfile_without_dir:
|
|
|
|
taskfile: ./module1/Taskfile.yml
|
|
|
|
included_with_dir:
|
|
|
|
taskfile: ./module2
|
|
|
|
dir: ./module2
|
|
|
|
included_taskfile_with_dir:
|
|
|
|
taskfile: ./module2/Taskfile.yml
|
|
|
|
dir: ./module2
|
2020-05-17 16:03:03 -03:00
|
|
|
included_os: ./Taskfile_{{OS}}.yml
|
2018-10-13 16:56:51 -03:00
|
|
|
|
|
|
|
tasks:
|
|
|
|
default:
|
|
|
|
cmds:
|
|
|
|
- task: gen
|
|
|
|
- task: included:gen
|
2018-10-13 17:52:09 -03:00
|
|
|
- task: included_taskfile:gen
|
2020-01-29 11:25:11 +03:00
|
|
|
- task: included_without_dir:gen_file
|
|
|
|
- task: included_taskfile_without_dir:gen_dir
|
|
|
|
- task: included_with_dir:gen_file
|
|
|
|
- task: included_taskfile_with_dir:gen_dir
|
2020-05-17 16:03:03 -03:00
|
|
|
- task: included_os:gen
|
2018-10-13 16:56:51 -03:00
|
|
|
|
|
|
|
gen:
|
|
|
|
cmds:
|
|
|
|
- echo main > main.txt
|