mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
tools: update Windows installer build script
Replace the outdated build_installer.sh with the steps used in CI, call build_installer.sh from CI. Move the signing part into the new script, sign_installer.sh.
This commit is contained in:
parent
3bbb758bc5
commit
c780abc6a6
@ -372,19 +372,5 @@ build_installer:
|
|||||||
- build_cmdlinerunner
|
- build_cmdlinerunner
|
||||||
before_script: []
|
before_script: []
|
||||||
script:
|
script:
|
||||||
- mkdir idf_tools_tmp
|
|
||||||
- export IDF_TOOLS_PATH=$PWD/idf_tools_tmp
|
|
||||||
- tools/idf_tools.py --non-interactive download --platform Windows-x86_64 all
|
|
||||||
- tools/idf_tools.py --tools-json tools/windows/tool_setup/tools_fallback.json --non-interactive download --platform Windows-x86_64 all
|
|
||||||
- mkdir tools/windows/tool_setup/dist
|
|
||||||
- mv idf_tools_tmp/dist/* tools/windows/tool_setup/dist/
|
|
||||||
|
|
||||||
- cd tools/windows/tool_setup/
|
- cd tools/windows/tool_setup/
|
||||||
- mkdir unzip
|
- ./build_installer.sh
|
||||||
- cd unzip
|
|
||||||
- wget --no-verbose https://www.7-zip.org/a/7z1900-extra.7z
|
|
||||||
- 7zr e -y 7z1900-extra.7z
|
|
||||||
- cd ..
|
|
||||||
|
|
||||||
- wget --no-verbose https://dl.espressif.com/dl/esp-idf/idf_versions.txt
|
|
||||||
- iscc idf_tool_setup.iss
|
|
||||||
|
@ -83,3 +83,4 @@ tools/test_idf_tools/test_idf_tools.py
|
|||||||
tools/unit-test-app/unit_test.py
|
tools/unit-test-app/unit_test.py
|
||||||
tools/windows/eclipse_make.sh
|
tools/windows/eclipse_make.sh
|
||||||
tools/windows/tool_setup/build_installer.sh
|
tools/windows/tool_setup/build_installer.sh
|
||||||
|
tools/windows/tool_setup/sign_installer.sh
|
||||||
|
@ -14,7 +14,17 @@ Some functionality of the installer depends on additional programs:
|
|||||||
|
|
||||||
* [cmdlinerunner](cmdlinerunner/cmdlinerunner.c) — a helper DLL used to run external command line programs from the installer, capture live console output, and get the exit code.
|
* [cmdlinerunner](cmdlinerunner/cmdlinerunner.c) — a helper DLL used to run external command line programs from the installer, capture live console output, and get the exit code.
|
||||||
|
|
||||||
## Steps required to build the installer
|
## Building the installer
|
||||||
|
|
||||||
|
### In Docker
|
||||||
|
|
||||||
|
This uses `wine-innosetup` Docker image and `build_installer.sh` script. This is how the installer is built in CI.
|
||||||
|
|
||||||
|
```
|
||||||
|
docker run --rm -v $IDF_PATH:/idf -w /idf/tools/windows/tool_setup -it $CI_DOCKER_REGISTRY/wine-innosetup:1 /bin/bash build_installer.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
### Manually, step by step
|
||||||
|
|
||||||
* Build cmdlinerunner DLL.
|
* Build cmdlinerunner DLL.
|
||||||
- On Linux/Mac, install mingw-w64 toolchain (`i686-w64-mingw32-gcc`). Then build the DLL using CMake:
|
- On Linux/Mac, install mingw-w64 toolchain (`i686-w64-mingw32-gcc`). Then build the DLL using CMake:
|
||||||
@ -35,5 +45,10 @@ Some functionality of the installer depends on additional programs:
|
|||||||
|
|
||||||
* Build the installer using Inno Setup Compiler: `ISCC.exe idf_tools_setup.iss`.
|
* Build the installer using Inno Setup Compiler: `ISCC.exe idf_tools_setup.iss`.
|
||||||
|
|
||||||
* Obtain the signing keys, then sign `Output/esp-idf-tools-setup-unsigned.exe`.
|
## Signing the installer
|
||||||
|
|
||||||
|
* Obtain the signing key (e.g `key.pem`) and the certificate chain (e.g. `certchain.pem`). Set the environment variables to point to these files:
|
||||||
|
- `export KEYFILE=key.pem`
|
||||||
|
- `export CERTCHAIN=certchain.pem`
|
||||||
|
|
||||||
|
* Run `sign_installer.sh` script. This will ask for the `key.pem` password, and produce the signed installer in the Output directory. If you plan to run the script multiple times, you may also set `KEYPASSWORD` environment variable to the `key.pem` password, to avoid the prompt.
|
||||||
|
@ -1,67 +1,43 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
# Setup script to build Windows tool installer with Inno Setup
|
# Script to build the IDF Tools installer for Windows with Inno Setup.
|
||||||
|
# This script should be executed inside wine-innosetup docker image.
|
||||||
#
|
#
|
||||||
# Designed to be run on Linux (with wine) but could be adapted to run under MSYS2 on Windows
|
# - Downloads all tools to install into the "dist/" directory
|
||||||
# pretty easily...
|
# - Downloads 7z and idf_versions.txt
|
||||||
#
|
|
||||||
# - Downloads (if necessary) all tools to install to the "dl/" directory
|
|
||||||
# - Deletes the "input" directory contains and copies everything under there
|
|
||||||
# - Runs ISCC under wine to compile the installer itself
|
# - Runs ISCC under wine to compile the installer itself
|
||||||
set -e
|
|
||||||
|
|
||||||
if [ -z "${KEYPASSWORD}" ]; then
|
set -e
|
||||||
echo "KEYPASSWORD should be set"
|
set -u
|
||||||
|
|
||||||
|
iscc_path=$(which iscc)
|
||||||
|
if [[ -z "$iscc_path" ]]; then
|
||||||
|
echo "Inno setup compiler (iscc) not found. Are you running wine-innosetup Docker image?"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$1" != "--no-download" ]; then
|
if [[ -z "${IDF_PATH:-}" ]]; then
|
||||||
|
export IDF_PATH=$(cd ../../../; pwd)
|
||||||
mkdir -p dl input
|
echo "Assuming IDF_PATH: ${IDF_PATH}"
|
||||||
|
|
||||||
cd `dirname $0`
|
|
||||||
pushd dl
|
|
||||||
wget --continue "https://dl.espressif.com/dl/xtensa-esp32-elf-win32-1.22.0-80-g6c4433a-5.2.0.zip"
|
|
||||||
wget --continue "https://github.com/espressif/binutils-esp32ulp/releases/download/v2.28.51-esp32ulp-20180809/binutils-esp32ulp-win32-2.28.51-esp32ulp-20180809.zip"
|
|
||||||
wget --continue "https://github.com/espressif/openocd-esp32/releases/download/v0.10.0-esp32-20180920/openocd-esp32-win32-0.10.0-esp32-20180920.zip"
|
|
||||||
wget --continue "https://github.com/espressif/kconfig-frontends/releases/download/v4.6.0.0-idf-20180525/mconf-v4.6.0.0-idf-20180525-win32.zip"
|
|
||||||
wget --continue "https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-win.zip"
|
|
||||||
popd
|
|
||||||
|
|
||||||
rm -rf input/*
|
|
||||||
pushd input
|
|
||||||
unzip ../dl/xtensa-esp32-elf-win32-1.22.0-80-g6c4433a-5.2.0.zip
|
|
||||||
unzip ../dl/mconf-v4.6.0.0-idf-20180525-win32.zip
|
|
||||||
unzip ../dl/binutils-esp32ulp-win32-2.28.51-esp32ulp-20180809.zip
|
|
||||||
unzip ../dl/openocd-esp32-win32-0.10.0-esp32-20180920.zip
|
|
||||||
unzip ../dl/ninja-win.zip
|
|
||||||
popd
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
wine "C:\Program Files\Inno Setup 5\ISCC.exe" "`winepath -w ./idf_tool_setup.iss`"
|
echo "Downloading IDF Tools..."
|
||||||
|
mkdir -p idf_tools_tmp
|
||||||
|
export IDF_TOOLS_PATH=$PWD/idf_tools_tmp
|
||||||
|
$IDF_PATH/tools/idf_tools.py --non-interactive download --platform Windows-x86_64 all
|
||||||
|
$IDF_PATH/tools/idf_tools.py --tools-json tools_fallback.json --non-interactive download --platform Windows-x86_64 all
|
||||||
|
mkdir -p dist
|
||||||
|
cp idf_tools_tmp/dist/* dist/
|
||||||
|
|
||||||
# sign the installer with osslsigncode, parsing the version number out of the
|
echo "Downloading 7z..."
|
||||||
# installer config
|
mkdir -p unzip
|
||||||
|
pushd unzip
|
||||||
|
wget --no-verbose -O 7z1900-extra.7z https://www.7-zip.org/a/7z1900-extra.7z
|
||||||
|
7zr e -y 7z1900-extra.7z
|
||||||
|
popd
|
||||||
|
|
||||||
VERSION=`grep "^AppVersion=" idf_tool_setup.iss | cut -d'=' -f2`
|
echo "Downloading idf_versions.txt..."
|
||||||
|
wget --no-verbose -O idf_versions.txt https://dl.espressif.com/dl/esp-idf/idf_versions.txt
|
||||||
|
|
||||||
echo "Signing installer..."
|
echo "Running ISCC..."
|
||||||
|
iscc idf_tool_setup.iss
|
||||||
# Note: The cert chain passed to -certs needs to contain the intermediate
|
|
||||||
# cert(s) as well, appended after the code signing cert, or Windows may see
|
|
||||||
# it as "Unknown Publisher"
|
|
||||||
#
|
|
||||||
# See https://stackoverflow.com/a/52637050 for full details
|
|
||||||
#
|
|
||||||
umask 770 # for the process substitution FIFO
|
|
||||||
|
|
||||||
osslsigncode -certs ./keys/certchain.pem -key ./keys/key.pem \
|
|
||||||
-readpass <(echo "$KEYPASSWORD") \
|
|
||||||
-in Output/esp-idf-tools-setup-unsigned.exe \
|
|
||||||
-out Output/esp-idf-tools-setup-${VERSION}.exe \
|
|
||||||
-h sha256 \
|
|
||||||
-n "Espressif Systems (Shanghai) Pte. Ltd." \
|
|
||||||
-i "https://www.espressif.com/" \
|
|
||||||
-ts http://timestamp.digicert.com
|
|
||||||
|
|
||||||
chmod 644 Output/esp-idf-tools-setup-${VERSION}.exe # make up for the umask
|
|
||||||
|
49
tools/windows/tool_setup/sign_installer.sh
Executable file
49
tools/windows/tool_setup/sign_installer.sh
Executable file
@ -0,0 +1,49 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
#
|
||||||
|
# Script to sign the IDF Tools installer for Windows, built with build_installer.sh.
|
||||||
|
#
|
||||||
|
|
||||||
|
set -e
|
||||||
|
set -u
|
||||||
|
|
||||||
|
if [[ -z "${KEYFILE:-}" || -z "${CERTCHAIN:-}" ]]; then
|
||||||
|
echo "To sign the installer, set the following environment variables:"
|
||||||
|
echo " KEYFILE - private key file"
|
||||||
|
echo " KEYPASSWORD - password for the private key file (optional, will prompt for password if not set)"
|
||||||
|
echo " CERTCHAIN - certificate chain file"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
umask 770 # for the process substitution FIFO
|
||||||
|
|
||||||
|
VERSION=`grep "#define MyAppVersion " idf_tool_setup.iss | cut -d ' ' -f3 | tr -d '"'`
|
||||||
|
echo "Installer version ${VERSION}"
|
||||||
|
|
||||||
|
IN_FILE="Output/esp-idf-tools-setup-unsigned.exe"
|
||||||
|
OUT_FILE="Output/esp-idf-tools-setup-${VERSION}.exe"
|
||||||
|
|
||||||
|
if [[ -n "${KEYPASSWORD:-}" ]]; then
|
||||||
|
PASSARG="-readpass <(echo \"$KEYPASSWORD\")"
|
||||||
|
else
|
||||||
|
PASSARG="-askpass"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Signing the installer (${IN_FILE})..."
|
||||||
|
# Note: The cert chain passed to -certs needs to contain the intermediate
|
||||||
|
# cert(s) as well, appended after the code signing cert, or Windows may see
|
||||||
|
# it as "Unknown Publisher"
|
||||||
|
#
|
||||||
|
# See https://stackoverflow.com/a/52637050 for full details
|
||||||
|
#
|
||||||
|
osslsigncode -certs ${CERTCHAIN} -key ${KEYFILE} \
|
||||||
|
${PASSARG} \
|
||||||
|
-in ${IN_FILE} \
|
||||||
|
-out ${OUT_FILE} \
|
||||||
|
-h sha256 \
|
||||||
|
-n "Espressif Systems (Shanghai) Co., Ltd." \
|
||||||
|
-i "https://www.espressif.com/" \
|
||||||
|
-ts http://timestamp.digicert.com
|
||||||
|
|
||||||
|
chmod 644 ${OUT_FILE} # make up for the umask
|
||||||
|
|
||||||
|
echo "Generated ${OUT_FILE}"
|
Loading…
x
Reference in New Issue
Block a user