0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-02 20:48:06 +00:00

Update CI to generate MSI installer for Windows using WiX. ()

* Update CI to generate MSI installer for Windows using WiX.

* Fix missing option for WiX install.

* Copy icon file alongside WiX sources.

* Run WiX in the build directory instead of CWD.
This commit is contained in:
Austin S. Hemmelgarn 2024-11-01 12:06:13 -04:00 committed by GitHub
parent 99b2a7acc7
commit 6cb5e58f60
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 63 additions and 34 deletions

View file

@ -343,7 +343,7 @@ jobs:
trusted-signing-account-name: Netdata
certificate-profile-name: Netdata
files-folder: ${{ github.workspace }}\packaging\windows
files-folder-filter: exe
files-folder-filter: msi
file-digest: SHA256
timestamp-rfc3161: "http://timestamp.acs.microsoft.com"
timestamp-digest: SHA256
@ -352,7 +352,7 @@ jobs:
uses: actions/upload-artifact@v4.4.2
with:
name: windows-x86_64-installer
path: packaging\windows\netdata*.exe
path: packaging\windows\netdata*.msi
retention-days: 30
- name: Failure Notification
uses: rtCamp/action-slack-notify@v2

6
.gitignore vendored
View file

@ -196,9 +196,5 @@ build/
src/go/plugin/go.d/bin/
src/go/plugin/go.d/vendor
# ignore nsis installer
packaging/utils/netdata-installer-x64.exe
# ignore files used with msi installer
packaging/utils/*.msi
packaging/windows/*.msi

View file

@ -2468,7 +2468,8 @@ if(OS_WINDOWS)
set(NETDATA_RES_FILES "packaging/windows/resources/netdata.rc")
configure_file(packaging/windows/resources/netdata.manifest.in ${CMAKE_SOURCE_DIR}/packaging/windows/resources/netdata.manifest @ONLY)
configure_file(packaging/windows/netdata.wxs.in ${CMAKE_SOURCE_DIR}/packaging/windows/netdata.wxs @ONLY)
configure_file(packaging/windows/netdata.wxs.in netdata.wxs @ONLY)
configure_file(packaging/windows/NetdataWhite.ico NetdataWhite.ico COPYONLY)
endif()
add_executable(netdata

View file

@ -6,7 +6,7 @@ CMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE:-RelWithDebInfo}"
# shellcheck source=./win-build-dir.sh
. "${REPO_ROOT}/packaging/windows/win-build-dir.sh"
set -exu -o pipefail
set -eu -o pipefail
if [ -d "${build}" ]; then
rm -rf "${build}"

View file

@ -0,0 +1,8 @@
#!/bin/bash
REPO_ROOT="$(dirname "$(dirname "$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null && pwd -P)")")"
# shellcheck source=./win-build-dir.sh
. "${REPO_ROOT}/packaging/windows/win-build-dir.sh"
cygpath -wa "${build}"

View file

@ -82,3 +82,24 @@ if ($LastExitcode -ne 0) {
exit 1
}
}
Write-Host "Installing WiX toolset"
dotnet tool install -g wix
if ($LastExitcode -ne 0) {
exit 1
}
Write-Host "Adding WiX extensions"
wix extension -g add WixToolset.Util.wixext
if ($LastExitcode -ne 0) {
exit 1
}
wix extension -g add WixToolset.UI.wixext
if ($LastExitcode -ne 0) {
exit 1
}

View file

@ -2,21 +2,10 @@
repo_root="$(dirname "$(dirname "$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null && pwd -P)")")"
if [ -n "${BUILD_DIR}" ]; then
build="${BUILD_DIR}"
elif [ -n "${OSTYPE}" ]; then
if [ -n "${MSYSTEM}" ]; then
build="${repo_root}/build-${OSTYPE}-${MSYSTEM}"
else
build="${repo_root}/build-${OSTYPE}"
fi
elif [ "$USER" = "vk" ]; then
build="${repo_root}/build"
else
build="${repo_root}/build"
fi
# shellcheck source=./win-build-dir.sh
. "${repo_root}/packaging/windows/win-build-dir.sh"
set -exu -o pipefail
set -eu -o pipefail
# Regenerate keys everytime there is an update
if [ -d /opt/netdata/etc/pki/ ]; then
@ -48,13 +37,8 @@ if [ ! -f "/cloud.txt" ]; then
fi
${GITHUB_ACTIONS+echo "::endgroup::"}
${GITHUB_ACTIONS+echo "::group::Packaging"}
${GITHUB_ACTIONS+echo "::group::Copy Files"}
tar -xf /msys2-latest.tar.zst -C /opt/netdata/ || exit 1
cp -R /opt/netdata/msys64/* /opt/netdata/ || exit 1
rm -rf /opt/netdata/msys64/
NDVERSION=$"$(grep 'CMAKE_PROJECT_VERSION:STATIC' "${build}/CMakeCache.txt"| cut -d= -f2)"
NDMAJORVERSION=$"$(grep 'CMAKE_PROJECT_VERSION_MAJOR:STATIC' "${build}/CMakeCache.txt"| cut -d= -f2)"
NDMINORVERSION=$"$(grep 'CMAKE_PROJECT_VERSION_MINOR:STATIC' "${build}/CMakeCache.txt"| cut -d= -f2)"
/mingw64/bin/makensis.exe -DCURRVERSION="${NDVERSION}" -DMAJORVERSION="${NDMAJORVERSION}" -DMINORVERSION="${NDMINORVERSION}" "${repo_root}/packaging/windows/installer.nsi"
${GITHUB_ACTIONS+echo "::endgroup::"}

View file

@ -14,3 +14,26 @@ $env:CHERE_INVOKING = 'yes'
if ($LastExitcode -ne 0) {
exit 1
}
if ($null -eq $env:BUILD_DIR) {
$builddir = & $msysbash -l "$PSScriptRoot\get-win-build-path.sh"
if ($LastExitcode -ne 0) {
exit 1
}
} else {
$builddir = $env:BUILD_DIR
}
Push-Location "$builddir"
$wixarch = "x64"
wix build -arch $wixarch -ext WixToolset.Util.wixext -ext WixToolset.UI.wixext -out "$PSScriptRoot\netdata-$wixarch.msi" netdata.wxs
if ($LastExitcode -ne 0) {
Pop-Location
exit 1
}
Pop-Location

View file

@ -1,11 +1,7 @@
#!/bin/bash
if [ -n "${BUILD_DIR}" ]; then
if (echo "${BUILD_DIR}" | grep -q -E "^[A-Z]:\\\\"); then
build="$(echo "${BUILD_DIR}" | sed -e 's/\\/\//g' -e 's/^\([A-Z]\):\//\/\1\//' -)"
else
build="${BUILD_DIR}"
fi
build="$(cygpath -u "${BUILD_DIR}")"
elif [ -n "${OSTYPE}" ]; then
if [ -n "${MSYSTEM}" ]; then
build="${REPO_ROOT}/build-${OSTYPE}-${MSYSTEM}"