26 lines
435 B
YAML
26 lines
435 B
YAML
# https://taskfile.dev
|
|
|
|
version: '3'
|
|
|
|
vars:
|
|
GOVER: 125
|
|
VERSION: 0.0.0
|
|
|
|
tasks:
|
|
default:
|
|
cmds:
|
|
- task -l
|
|
silent: true
|
|
build:
|
|
desc: Build the program
|
|
cmds:
|
|
- go{{.GOVER}} build -ldflags='-w -X code.laidback.moe/yomi/cmd.Version={{.VERSION}}' -buildvcs=false -v
|
|
clean:
|
|
desc: Remove the program
|
|
cmds:
|
|
- rm -f yomi
|
|
tidy:
|
|
desc: Maintain go.mod
|
|
cmds:
|
|
- go{{.GOVER}} mod tidy
|