mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
b44d191b2f
* +encore.dev * wip * update source path * encoredev/go --------- Co-authored-by: Jacob Heider <jacob@tea.xyz>
43 lines
1 KiB
YAML
43 lines
1 KiB
YAML
distributable:
|
|
url: https://github.com/encoredev/encore/archive/refs/tags/v{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: encoredev/encore
|
|
|
|
provides:
|
|
- bin/encore
|
|
- bin/git-remote-encore
|
|
|
|
runtime:
|
|
env:
|
|
ENCORE_RUNTIME_PATH: ${{prefix}}/runtime
|
|
|
|
dependencies:
|
|
encore.dev/go: ^1.21
|
|
|
|
build:
|
|
script:
|
|
- go mod download
|
|
- go build $ARGS -ldflags="$LDFLAGS" -o "{{prefix}}"/bin/encore ./cli/cmd/encore
|
|
- go build $ARGS -ldflags="$LDFLAGS" -o "{{prefix}}"/bin/git-remote-encore ./cli/cmd/git-remote-encore
|
|
- cp -a runtime {{prefix}}
|
|
env:
|
|
GO111MODULE: on
|
|
ARGS:
|
|
- -v
|
|
- -trimpath
|
|
LDFLAGS:
|
|
- -s
|
|
- -w
|
|
- -X 'encr.dev/internal/version.Version={{version}}'
|
|
linux:
|
|
# or segmentation fault
|
|
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
|
|
LDFLAGS:
|
|
- -buildmode=pie
|
|
|
|
test:
|
|
# test errors checking update api; looks like it still runs fine.
|
|
- (encore version || true) | grep {{version}}
|