pantry/projects/pulumi.io/package.yml

54 lines
1.1 KiB
YAML
Raw Normal View History

distributable:
url: https://github.com/pulumi/pulumi/archive/refs/tags/v{{ version }}.tar.gz
strip-components: 1
versions:
github: pulumi/pulumi
strip: /v/
provides:
- bin/pulumi
dependencies:
curl.se/ca-certs: '*'
build:
dependencies:
go.dev: '*'
2023-10-07 00:18:26 +03:00
script:
- run: go mod download
working-directory: sdk
- run: go mod download
working-directory: pkg
2023-10-07 00:18:26 +03:00
- run: |
sed -i.bak -e 's/-ldflags "/-ldflags "-buildmode=pie /g' Makefile
rm Makefile.bak
if: linux
2023-10-07 00:18:26 +03:00
- make build
- make install
2023-10-07 00:18:26 +03:00
- mkdir -p {{prefix}}/bin
- mv build/bin/pulumi* {{prefix}}/bin/
# Install shell completions
# TODO: Doesn't work for zsh. Should it be left up to user?
# {{prefix}}/bin/pulumi gen-completion $SHELL
env:
GOPATH: "$PWD/build"
test:
script: |
pulumi new aws-typescript --generate-only --force -y
if [ -e "$PWD/Pulumi.yaml" ]; then
echo "Project was created"
else
echo "Project was not created"
exit 1
fi
env:
PULUMI_ACCESS_TOKEN: local://
PULUMI_TEMPLATE_PATH: "$PWD/templates"