summaryrefslogtreecommitdiff
path: root/.gitlab/ci/post_build.ps1
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab/ci/post_build.ps1')
-rwxr-xr-x.gitlab/ci/post_build.ps14
1 files changed, 4 insertions, 0 deletions
diff --git a/.gitlab/ci/post_build.ps1 b/.gitlab/ci/post_build.ps1
new file mode 100755
index 0000000000..fbd8ae891c
--- /dev/null
+++ b/.gitlab/ci/post_build.ps1
@@ -0,0 +1,4 @@
+$pwsh = [System.Diagnostics.Process]::GetCurrentProcess().MainModule.FileName
+if (Test-Path -Path ".gitlab/ci/post_build_$env:CMAKE_CONFIGURATION.ps1" -PathType Leaf) {
+ . ".gitlab/ci/post_build_$env:CMAKE_CONFIGURATION.ps1"
+}