mirror of
https://gitlab.freedesktop.org/dabrain34/GstPipelineStudio.git
synced 2024-11-22 09:00:59 +00:00
ci: use wix install from latest gstreamer ci image
This commit is contained in:
parent
db83d15ab4
commit
6266ae7485
2 changed files with 13 additions and 2 deletions
|
@ -107,7 +107,6 @@ windows installer stable:
|
|||
script:
|
||||
- git fetch --tags
|
||||
- "& ./ci/build_gps.ps1"
|
||||
- "& ./installer/wix/prepare_wix.ps1"
|
||||
- "& ./installer/wix/prepare_gstreamer.ps1"
|
||||
- "& ./installer/wix/build_installer.ps1"
|
||||
artifacts:
|
||||
|
|
|
@ -1,7 +1,19 @@
|
|||
$wixFolder = Join-Path $PSScriptRoot -ChildPath 'wix/'
|
||||
# Check wix installation
|
||||
$wixInstalledFolder = "C:\Program Files (x86)\Windows Installer XML v3.5\bin"
|
||||
if(Test-Path $wixInstalledFolder)
|
||||
{
|
||||
$wixFolder = $wixInstalledFolder
|
||||
}
|
||||
else
|
||||
{
|
||||
$prepareWix = Join-Path $PSScriptRoot -ChildPath prepare_wix.ps1
|
||||
& "$prepareWix"
|
||||
$wixFolder = Join-Path $PSScriptRoot -ChildPath 'wix/'
|
||||
}
|
||||
$candleToolPath = Join-Path $wixFolder -ChildPath candle.exe
|
||||
$lightToolPath = Join-Path $wixFolder -ChildPath light.exe
|
||||
$heatToolPath = Join-Path $wixFolder -ChildPath heat.exe
|
||||
|
||||
$GPSUpgradeCode = "9B87C8FF-599C-4F20-914E-AF5E68CB3DC0"
|
||||
$GPSVersion = $(git describe --always --abbrev=0)
|
||||
Write-Output $GPSVersion
|
||||
|
|
Loading…
Reference in a new issue