mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-06 18:04:54 +02:00
49 lines
1.8 KiB
Text
49 lines
1.8 KiB
Text
maintainer="Hoang Nguyen <folliekazetani@protonmail.com>"
|
|
pkgname=pulumi-language-yaml
|
|
pkgver=1.19.0
|
|
pkgrel=0
|
|
pkgdesc="Infrastructure as Code SDK (YAML language provider)"
|
|
url="https://pulumi.com/"
|
|
# blocked by pulumi
|
|
arch="x86_64 aarch64"
|
|
license="Apache-2.0"
|
|
makedepends="go"
|
|
checkdepends="pulumi pulumi-language-go"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/pulumi/pulumi-yaml/archive/refs/tags/v$pkgver.tar.gz"
|
|
builddir="$srcdir/pulumi-yaml-$pkgver"
|
|
options="net" # download Go modules
|
|
|
|
export GOCACHE="${GOCACHE:-"$srcdir/go-cache"}"
|
|
export GOTMPDIR="${GOTMPDIR:-"$srcdir"}"
|
|
export GOMODCACHE="${GOMODCACHE:-"$srcdir/go"}"
|
|
|
|
build() {
|
|
mkdir -p bin
|
|
go build -v \
|
|
-ldflags "-X github.com/pulumi/pulumi-yaml/pkg/version.Version=v$pkgver" \
|
|
-o bin/ \
|
|
./cmd/...
|
|
}
|
|
|
|
check() {
|
|
# expose pulumi-language-yaml binary in PATH for the tests to use
|
|
export PATH="$PATH:$builddir/bin"
|
|
|
|
# Unset -trimpath, since some tests create run_plugin_version_test.go file using relative path.
|
|
# Skipped tests depend externally downloaded schema files (scripts/get_schemas.sh is broken upstream) and pulumi resource plugins.
|
|
# TestLanguage depends on the main pulumi repository
|
|
GOFLAGS="${GOFLAGS/-trimpath/}" \
|
|
PULUMI_SKIP_UPDATE_CHECK=true \
|
|
PULUMI_DISABLE_AUTOMATIC_PLUGIN_ACQUISITION=true \
|
|
go test \
|
|
-skip 'Test(GenerateProgram|ImportTemplate|GenerateExamples|Parameterized|ResourceOrderingWithDefaultProvider|Language|RemoteComponent|TypeCheckError|ResourcePropertiesConfig|ResourceSecret|Random|AuthoredComponent)' \
|
|
./...
|
|
}
|
|
|
|
package() {
|
|
install -Dm755 bin/pulumi-language-yaml bin/pulumi-converter-yaml -t "$pkgdir"/usr/bin/
|
|
}
|
|
|
|
sha512sums="
|
|
9429a9f0c6b583cfca04a8cfc0e8ff870f107ccf104ac562635957c45542ec5fa7a98df19b44a046bc4f1816ada43c3d49b2dacf981273d218bba0e4eea2aadb pulumi-language-yaml-1.19.0.tar.gz
|
|
"
|