Skip to content
Snippets Groups Projects

testing/pulumi: upgrade to 2.20.0

Merged Fraser Waters requested to merge Frassle/aports:update into master
All threads resolved!
Files
2
Workaround some issues with the pulumi build pipeline.
Currently the build system assumes your in a git repo to get the version, and
doesn't quite provide a way to build just the native components we need to
apk package.
Currently the build system doesn't quite provide a way to build
just the native components we need to apk package.
index 7f2aa25f9..b1cb72f43 100755
--- a/scripts/get-version
+++ b/scripts/get-version
@@ -6,6 +6,12 @@ if [ $# -eq 0 ]; then
exit 1
fi
+# Allow version to be set manually when building outside of git repo
+if [ -n "${PULUMI_VERSION+x}" ]; then
+ echo "${PULUMI_VERSION}"
+ exit 0
+fi
+
COMMITISH=$1
DIRTY_TAG=""
EXACT=0
diff --git a/Makefile b/Makefile
index 0b81a9de2..26a2f8e8a 100644
--- a/Makefile
Loading