File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 30
30
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
31
31
32
32
- name : Install wix toolset
33
- run : dotnet tool install --global wix --version 5.0.0 --verbosity quiet
33
+ run : dotnet tool install --global wix --version 5.0.2 --verbosity quiet
34
34
35
35
- name : Fetch latest Windows version from Adoptium API
36
36
run : |
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ REM PRODUCT_CATEGORY=jre|jdk (only one at a time)
13
13
REM SKIP_MSI_VALIDATION=true (Add -sval option to light.exe to skip MSI/MSM validation and skip smoke.exe )
14
14
REM UPGRADE_CODE_SEED=thisIsAPrivateSecretSeed ( optional ) for upgradable MSI (If none, new PRODUCT_UPGRADE_CODE is generate for each run)
15
15
REM OUTPUT_BASE_FILENAME=customFileName (optional) for setting file names that are not based on the default naming convention
16
- REM WIX_VERSION=5.0.0 (optional) for setting the version of Wix Toolset to use
16
+ REM WIX_VERSION=5.0.2 (optional) for setting the version of Wix Toolset to use
17
17
18
18
SETLOCAL ENABLEEXTENSIONS
19
19
SET ERR = 0
@@ -38,7 +38,7 @@ IF NOT DEFINED PRODUCT_HELP_LINK SET PRODUCT_HELP_LINK=https://github.com/adopti
38
38
IF NOT DEFINED PRODUCT_SUPPORT_LINK SET PRODUCT_SUPPORT_LINK = https://adoptium.net/support
39
39
IF NOT DEFINED PRODUCT_UPDATE_INFO_LINK SET PRODUCT_UPDATE_INFO_LINK = https://adoptium.net/temurin/releases
40
40
IF NOT DEFINED WIX_HEAT_PATH SET WIX_HEAT_PATH = .\Resources\heat_dir\heat.exe
41
- IF NOT DEFINED WIX_VERSION SET WIX_VERSION = 5.0.0
41
+ IF NOT DEFINED WIX_VERSION SET WIX_VERSION = 5.0.2
42
42
43
43
powershell -ExecutionPolicy Bypass -File " %~dp0 \helpers\Validate-Input.ps1" ^
44
44
-toValidate '%ARCH% ' ^
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ call powershell.exe ./CreateSourceFolder.AdoptOpenJDK.ps1 ^
25
25
-openjdk_filename_regex "^OpenJDK(?<major>\d*)" ^
26
26
-platform_regex "(?<platform>x86-32|x64|aarch64)" ^
27
27
-jvm_regex "(?<jvm>hotspot|openj9|dragonwell)" ^
28
- -wix_version "5.0.0 "
28
+ -wix_version "5.0.2 "
29
29
```
30
30
31
31
3 . Export the following environment variables:
@@ -42,7 +42,7 @@ call powershell.exe ./CreateSourceFolder.AdoptOpenJDK.ps1 ^
42
42
SET ARCH=x64|x86-32|x86|arm64 or all "x64 x86-32 arm64"
43
43
SET JVM=hotspot|openj9|dragonwell or both JVM=hotspot openj9
44
44
SET PRODUCT_CATEGORY=jre|jdk (only one at a time)
45
- SET WIX_VERSION=5.0.0 (make sure this is the same version that is installed on the build machine)
45
+ SET WIX_VERSION=5.0.2 (make sure this is the same version that is installed on the build machine)
46
46
```
47
47
48
48
To customize branding information you can export the following environment variables to override the default values. The default values are listed below:
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ param (
45
45
[Parameter (Mandatory = $false )]
46
46
[string ]$jvm = " " ,
47
47
[Parameter (Mandatory = $false )]
48
- [string ]$wix_version = " 5.0.0 "
48
+ [string ]$wix_version = " 5.0.2 "
49
49
)
50
50
51
51
Get-ChildItem - Path .\ - Filter * .zip - File - Name | ForEach-Object {
You can’t perform that action at this time.
0 commit comments