Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
aports
Manage
Activity
Members
Labels
Plan
Issues
1.2k
Issue boards
Milestones
Code
Merge requests
665
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
alpine
aports
Merge requests
!18342
testing/pulumi: upgrade to 2.20.0
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
testing/pulumi: upgrade to 2.20.0
Frassle/aports:update
into
master
Overview
2
Commits
1
Pipelines
4
Changes
2
All threads resolved!
Hide all comments
Merged
Fraser Waters
requested to merge
Frassle/aports:update
into
master
3 years ago
Overview
2
Commits
1
Pipelines
4
Changes
2
All threads resolved!
Hide all comments
Expand
https://github.com/pulumi/pulumi/blob/v2.20.0/CHANGELOG.md#2200-2021-02-03
Edited
3 years ago
by
Andy Postnikov
👍
0
👎
0
Merge request reports
Compare
master
version 3
320e4054
3 years ago
version 2
76025694
3 years ago
version 1
875f867f
3 years ago
master (base)
and
latest version
latest version
97f2ae65
1 commit,
3 years ago
version 3
320e4054
1 commit,
3 years ago
version 2
76025694
1 commit,
3 years ago
version 1
875f867f
1 commit,
3 years ago
2 files
+
6
−
23
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
testing/pulumi/10-install1.patch
+
2
−
19
Options
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