-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaskfile.yml
111 lines (90 loc) · 2.11 KB
/
taskfile.yml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
version: '3'
# taskfile: curently only used on windows
# see: https://taskfile.dev/installation
env:
PYTHON: python{{if eq OS "windows"}}.exe{{else}}3{{end}}
vars:
LIBEXT: '{{if eq OS "windows"}}.lib{{else}}.a{{end}}'
PYEXT: '{{if eq OS "windows"}}.pyd{{else}}.so{{end}}'
tasks:
faust:
cmds:
- $PYTHON scripts/manage.py setup --faust
status:
- test -f lib/static/libfaust{{.LIBEXT}}
sndfile:
cmds:
- $PYTHON scripts/manage.py setup --sndfile
status:
- test -f lib/status/libsndfile{{.LIBEXT}}
samplerate:
cmds:
- $PYTHON scripts/manage.py setup --samplerate
status:
- test -f lib/status/libsamplerate{{.LIBEXT}}
build:
deps: [faust]
cmds:
- $PYTHON scripts/manage.py build
sources:
- src/cyfaust/*.pyx
- src/cyfaust/*.pxd
- src/cyfaust/*.cpp
generates:
- build/cyfaust/*{{.PYEXT}}
build-static:
deps: [faust]
cmds:
- $PYTHON scripts/manage.py build --static
sources:
- src/static/cyfaust/*.pyx
- src/static/cyfaust/*.pxd
- src/static/cyfaust/*.cpp
generates:
- build/static/cyfaust/*{{.PYEXT}}
wheel:
deps:
- faust
- clean
cmds:
- $PYTHON scripts/manage.py wheel --dynamic
sources:
- src/static/cyfaust/*.pyx
- src/static/cyfaust/*.pxd
- src/static/cyfaust/*.cpp
generates:
- wheels/*.whl
wheel-static:
deps:
- faust
- clean
cmds:
- $PYTHON scripts/manage.py wheel --static
sources:
- src/static/cyfaust/*.pyx
- src/static/cyfaust/*.pxd
- src/static/cyfaust/*.cpp
generates:
- wheels/*-static-*.whl
release:
deps:
- faust
- clean
cmds:
- $PYTHON scripts/manage.py wheel --release
- task: test_wheel
test_wheel:
cmds:
- $PYTHON scripts/manage.py wheel --test
test:
cmds:
- $PYTHON scripts/manage.py test
pytest:
cmds:
- $PYTHON scripts/manage.py test --pytest
clean:
cmds:
- $PYTHON scripts/manage.py clean
reset:
cmds:
- $PYTHON scripts/manage.py clean --reset