2020-02-15 15:40:42 +02:00
|
|
|
version: '3'
|
2018-10-13 21:56:51 +02:00
|
|
|
|
|
|
|
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
|
2020-05-17 21:03:03 +02:00
|
|
|
included_os: ./Taskfile_{{OS}}.yml
|
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
|
2020-05-17 21:03:03 +02:00
|
|
|
- task: included_os:gen
|
2018-10-13 21:56:51 +02:00
|
|
|
|
|
|
|
gen:
|
|
|
|
cmds:
|
|
|
|
- echo main > main.txt
|