mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
54aab0c5ee
* +github.com/clever/microplane * better test for microplane --------- Co-authored-by: Max Howell <mxcl@me.com>
37 lines
749 B
YAML
37 lines
749 B
YAML
distributable:
|
|
url: https://github.com/clever/microplane/archive/refs/tags/v{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: clever/microplane/tags
|
|
|
|
dependencies:
|
|
git-scm.org: ^2
|
|
|
|
provides:
|
|
- bin/mp
|
|
|
|
build:
|
|
script: |
|
|
go mod download
|
|
go build -v -ldflags="$LDFLAGS" -o "{{ prefix }}"/bin/mp
|
|
dependencies:
|
|
go.dev: ^1.18
|
|
env:
|
|
LDFLAGS:
|
|
- -s
|
|
- -w
|
|
- -X main.version=v{{ version }}
|
|
linux:
|
|
# or segmentation fault
|
|
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
|
|
LDFLAGS:
|
|
- -buildmode=pie
|
|
|
|
test: |
|
|
echo "teaxyz/pantry.extra" > repos.txt
|
|
mp init -f repos.txt
|
|
# mp clone
|
|
# ^^ FIXME fails with exit code 128
|
|
mp status
|