mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
5bbc9e3cc7
closes #6146
53 lines
1.1 KiB
YAML
53 lines
1.1 KiB
YAML
distributable:
|
|
url: https://github.com/tidbyt/pixlet/archive/refs/tags/v{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
display-name: pixlet
|
|
|
|
versions:
|
|
github: tidbyt/pixlet
|
|
|
|
provides:
|
|
- bin/pixlet
|
|
|
|
dependencies:
|
|
google.com/webp: ^1
|
|
|
|
build:
|
|
dependencies:
|
|
go.dev: ^1.22
|
|
npmjs.com: '*'
|
|
nodejs.org: '*'
|
|
script:
|
|
- npm i
|
|
- npm run build
|
|
- go mod download
|
|
- go build -v -trimpath -ldflags="$LDFLAGS" -o $BUILDLOC .
|
|
# removed in 0.33.1
|
|
# https://github.com/tidbyt/pixlet/pull/1070
|
|
- run: GOOS=js GOARCH=wasm go build -trimpath -ldflags="-s -w" -o ${BUILDLOC}.wasm tidbyt.dev/pixlet
|
|
if: <0.33.1
|
|
env:
|
|
BUILDLOC: '{{prefix}}/bin/pixlet'
|
|
LDFLAGS:
|
|
- -s
|
|
- -w
|
|
- -X=tidbyt.dev/pixlet/cmd.Version={{version}}
|
|
linux:
|
|
LDFLAGS:
|
|
- -buildmode=pie
|
|
|
|
test:
|
|
fixture: |
|
|
load("render.star", "render")
|
|
def main():
|
|
return render.Root(
|
|
child = render.Text("Hello, World!")
|
|
)
|
|
script:
|
|
- pixlet help
|
|
- pixlet version
|
|
- pixlet version | grep {{version}}
|
|
- cp $FIXTURE hello-world.star
|
|
- pixlet render hello-world.star
|