mirror of
https://github.com/neilotoole/sq.git
synced 2024-11-24 11:54:37 +03:00
38 lines
769 B
YAML
38 lines
769 B
YAML
before:
|
|
hooks:
|
|
- go mod tidy
|
|
|
|
dist: dist-linux
|
|
|
|
builds:
|
|
-
|
|
main: .
|
|
binary: sq
|
|
flags:
|
|
- -a
|
|
env:
|
|
- CGO_ENABLED=1
|
|
- CGO_LDFLAGS=-static
|
|
- CC=aarch64-linux-gnu-gcc
|
|
- CXX=aarch64-linux-gnu-g++
|
|
goos:
|
|
- linux
|
|
goarch:
|
|
- arm64
|
|
ldflags:
|
|
- -extld=aarch64-linux-gnu-gcc
|
|
- -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:
|
|
- netgo
|
|
- sqlite_vtable
|
|
- sqlite_stat4
|
|
- sqlite_fts5
|
|
- sqlite_introspect
|
|
- sqlite_json
|
|
- sqlite_math_functions
|
|
archives:
|
|
- format: binary
|