2018-10-13 21:56:51 +02:00
|
|
|
version: '2'
|
|
|
|
|
|
|
|
includes:
|
|
|
|
included: ./included
|
2018-10-13 22:52:09 +02:00
|
|
|
included_taskfile: ./Taskfile2.yml
|
2020-01-29 10:25:11 +02: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
|
|
|
|
os_related:
|
|
|
|
taskfile: ./module3/CustomTaskfile.yml
|
|
|
|
dir: ./module3
|
2018-10-13 21:56:51 +02:00
|
|
|
|
|
|
|
tasks:
|
|
|
|
default:
|
|
|
|
cmds:
|
|
|
|
- task: gen
|
|
|
|
- task: included:gen
|
2018-10-13 22:52:09 +02:00
|
|
|
- task: included_taskfile:gen
|
2020-01-29 10:25:11 +02: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
|
|
|
|
- task: os_related:gen
|
2018-10-13 21:56:51 +02:00
|
|
|
|
|
|
|
gen:
|
|
|
|
cmds:
|
|
|
|
- echo main > main.txt
|