-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yml
More file actions
84 lines (68 loc) · 1.67 KB
/
Taskfile.yml
File metadata and controls
84 lines (68 loc) · 1.67 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
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
version: "3"
tasks:
whisper:build:
desc: Build and stage whisper-cli for current host
cmds:
- ./scripts/build-whisper-cli.sh
tidy:
desc: Tidy Go module dependencies
cmds:
- go mod tidy
build:
desc: Build voxclip CLI
cmds:
- go build ./cmd/voxclip
test:
desc: Run unit tests
cmds:
- go test ./...
test:integration:
desc: Run integration tests
cmds:
- go test -tags=integration ./...
test:e2e:
desc: Run end-to-end transcription test
cmds:
- go test -tags=e2e ./internal/cli -run '^TestTranscribeEndToEndWithFSDD$' -count=1
test:installer:
desc: Run installer script bats tests
cmds:
- bats scripts/install-voxclip_test.bats
test:mutate:
desc: Run mutation testing with gremlins
cmds:
- gremlins unleash
run:
desc: Run voxclip with default flow
cmds:
- go run ./cmd/voxclip
run:setup:
desc: Run setup command
cmds:
- go run ./cmd/voxclip setup
run:devices:
desc: Run devices command
cmds:
- go run ./cmd/voxclip devices
run:record:
desc: Run record command
cmds:
- go run ./cmd/voxclip record
run:transcribe:
desc: Run transcribe command
cmds:
- go run ./cmd/voxclip transcribe
release:check:
desc: Validate goreleaser configuration
cmds:
- goreleaser check
release:dry:
desc: Build snapshot release artifacts for all targets
cmds:
- goreleaser release --snapshot --clean
release:dry:host:
desc: Build snapshot artifacts for current OS/arch only
deps:
- whisper:build
cmds:
- goreleaser build --snapshot --clean --single-target