mirror of
https://github.com/neilotoole/sq.git
synced 2024-11-30 19:09:13 +03:00
6b613d9adc
* sqlite: initial extensions support, including virtual tables and fts5 * sqlite: virtual table columns now report type
30 lines
601 B
YAML
30 lines
601 B
YAML
before:
|
|
hooks:
|
|
- go mod tidy
|
|
|
|
dist: dist-windows
|
|
|
|
builds:
|
|
- main: .
|
|
binary: sq
|
|
env:
|
|
- CGO_ENABLED=1
|
|
goos:
|
|
- windows
|
|
goarch:
|
|
- amd64
|
|
ldflags:
|
|
- -s -w
|
|
- -X github.com/neilotoole/sq/cli/buildinfo.Version=v{{ .Version }}
|
|
- -X github.com/neilotoole/sq/cli/buildinfo.Commit={{ .ShortCommit }}
|
|
- -X github.com/neilotoole/sq/cli/buildinfo.Timestamp={{ .Date }}
|
|
tags:
|
|
- sqlite_vtable
|
|
- sqlite_stat4
|
|
- sqlite_fts5
|
|
- sqlite_introspect
|
|
- sqlite_json
|
|
- sqlite_math_functions
|
|
archives:
|
|
- format: binary
|