From 47a730de577dbe292c60721494d7bd0fb1c7835f Mon Sep 17 00:00:00 2001 From: Kevin Chen Date: Mon, 21 Aug 2023 15:54:39 -0400 Subject: [PATCH] =?UTF-8?q?+golang-migrate=20=E2=80=94=20Database=20migrat?= =?UTF-8?q?ions=20CLI=20(#2998)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * wip * test fix --------- Co-authored-by: Jacob Heider --- .../golang-migrate/migrate/package.yml | 65 +++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 projects/github.com/golang-migrate/migrate/package.yml diff --git a/projects/github.com/golang-migrate/migrate/package.yml b/projects/github.com/golang-migrate/migrate/package.yml new file mode 100644 index 00000000..0848262e --- /dev/null +++ b/projects/github.com/golang-migrate/migrate/package.yml @@ -0,0 +1,65 @@ +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}}