mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
47a730de57
* wip * test fix --------- Co-authored-by: Jacob Heider <jacob@tea.xyz>
66 lines
1.3 KiB
YAML
66 lines
1.3 KiB
YAML
distributable:
|
|
url: https://github.com/golang-migrate/migrate/archive/refs/tags/v{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: golang-migrate/migrate
|
|
|
|
provides:
|
|
- bin/migrate
|
|
|
|
build:
|
|
dependencies:
|
|
go.dev: ^1.19
|
|
tea.xyz/gx/cc: c99
|
|
tea.xyz/gx/make: '*'
|
|
script: |
|
|
go mod download
|
|
mkdir -p "{{ prefix }}"/bin
|
|
go build -v -trimpath -ldflags="$LDFLAGS" -tags "$DATABASE $SOURCE" -o $BUILDLOC ./cmd/migrate
|
|
env:
|
|
GOPROXY: https://proxy.golang.org,direct
|
|
GOSUMDB: sum.golang.org
|
|
GO111MODULE: on
|
|
CGO_ENABLED: 0
|
|
BUILDLOC: '{{prefix}}/bin/migrate'
|
|
LDFLAGS:
|
|
- -s
|
|
- -w
|
|
- -X main.Version={{version}}
|
|
# - -extldflags "static"
|
|
SOURCE:
|
|
- file
|
|
- go_bindata
|
|
- github
|
|
- github_ee
|
|
- bitbucket
|
|
- aws_s3
|
|
- google_cloud_storage
|
|
- godoc_vfs
|
|
- gitlab
|
|
DATABASE:
|
|
- postgres
|
|
- mysql
|
|
- redshift
|
|
- cassandra
|
|
- spanner
|
|
- cockroachdb
|
|
- yugabytedb
|
|
- clickhouse
|
|
- mongodb
|
|
- sqlserver
|
|
- firebird
|
|
- neo4j
|
|
- pgx
|
|
- pgx5
|
|
|
|
linux:
|
|
# or segmentation fault
|
|
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
|
|
LDFLAGS:
|
|
- -buildmode=pie
|
|
|
|
test:
|
|
script:
|
|
- test $(migrate -version 2>&1) = {{version}}
|