-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yml
More file actions
34 lines (30 loc) · 1.12 KB
/
Taskfile.yml
File metadata and controls
34 lines (30 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# https://taskfile.dev
version: '3'
vars:
GREETING: Commands - show | probe | load | make
FX_NAME: artifacts
FX_SLOT: 1
MIDI_SLOT_IN: 1
MIDI_SLOT_OUT: 1
tasks:
show:
cmds:
- ../../../tools/logue-cli/logue-cli-linux64-0.07-2b/logue-cli probe -m modfx -i {{.MIDI_SLOT_IN}} -o {{.MIDI_SLOT_OUT}}
probe:
cmds:
- ../../../tools/logue-cli/logue-cli-linux64-0.07-2b/logue-cli probe -l
clear:
cmds:
- ../../../tools/logue-cli/logue-cli-linux64-0.07-2b/logue-cli clear -m modfx -s {{.FX_SLOT}} -i {{.MIDI_SLOT_IN}} -o {{.MIDI_SLOT_OUT}}
load:
cmds:
- ../../../tools/logue-cli/logue-cli-linux64-0.07-2b/logue-cli load -i {{.MIDI_SLOT_IN}} -o {{.MIDI_SLOT_OUT}} -u {{.FX_NAME}}.ntkdigunit -s {{.FX_SLOT}}
make:
cmds:
- make
- ../../../tools/logue-cli/logue-cli-linux64-0.07-2b/logue-cli clear -m modfx -s {{.FX_SLOT}} -i {{.MIDI_SLOT_IN}} -o {{.MIDI_SLOT_OUT}}
- ../../../tools/logue-cli/logue-cli-linux64-0.07-2b/logue-cli load -i {{.MIDI_SLOT_IN}} -o {{.MIDI_SLOT_OUT}} -u {{.FX_NAME}}.ntkdigunit -s {{.FX_SLOT}}
default:
cmds:
- echo "{{.GREETING}}"
silent: true