-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathbuild_linux_app_from_docker.sh
executable file
·117 lines (91 loc) · 4.53 KB
/
build_linux_app_from_docker.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/bin/bash
handle_error() {
echo "An error occurred building InterSpec, on line $1"
exit 1
}
trap 'handle_error $LINENO' ERR
# set -e # Cause script to exit as soon as there is an error
# takes three argument: [path to InterSpec code] [Path to CMake build Directory] [Working directory path]
# - InterSpec code is mapped to `/interspec`
# - build directory mapped to `/build_app`
# - build working directory mapped to /build_working_dir
# For example: ./build_app.sh /interspec /build_app /build_working_dir
#
# This script is intended to be run from within the `quay.io/pypa/manylinux2014_x86_64` Docker image, for example, to build InterSpec you could
# cd /tmp
# mkdir build_interspec
# cd build_interspec
# git clone --recursive [email protected]:sandialabs/InterSpec.git ./InterSpec_code
# mkdir build_electron
# mkdir build_working_dir
# docker run --rm -it -v `pwd`/InterSpec_code:/interspec -v `pwd`/build_electron/:/build_app -v `pwd`/build_working_dir:/build_working_dir quay.io/pypa/manylinux_2_28_x86_64:latest /interspec/target/electron/build_linux_app_from_docker.sh /interspec /build_app /build_working_dir
# #Then results will then be in build_working_dir/InterSpec-linux-x64
if [ $# -ne 3 ]; then
echo "Error: This script requires exactly three arguments."
echo " [path to InterSpec code] [Path to CMake build Directory] [Working directory path]"
exit 1 # Exit with an error code
fi
InterSpecCodePath=$1
CmakeBuildDir=$2
WorkingDir=$3
echo "cd'ing into /build_working_dir"
cd ${WorkingDir}
cp "${InterSpecCodePath}/target/electron/package.json" .
git config --global --add safe.directory ${InterSpecCodePath}
export GIT_HASH=$(git -C ${InterSpecCodePath} rev-parse HEAD)
echo "GIT_HASH = ${GIT_HASH}"
echo "Will install npm and global packages"
yum update -y
yum install -y npm zip
# Use the 'n' package to install a fairly modern version of npm, by default we are on like version 6 or 8, which is too old to run some of the packages we need
npm install -g n
n 20.18.0
# Just in case, make sure to pick up latest node version
hash -r
# The default version of npm in manylinux_2_28_x86_64 is 6.14.11, which doesnt support the `exec` command, so we'll locally install a newer version of npm
npm install -g [email protected]
hash -r
npm install -g uglify-js
npm install -g uglifycss
npm install -g cmake-js
echo "Will install local npm packages"
npm install --save-dev node-addon-api --arch=x64
npm install electron --arch=x64
npm install --save-dev electron-packager
echo "CWD"
pwd
echo "ls node_modules"
ls node_modules
# We need to help find where node_modules directory is located in the Docker container
export NODE_MODULES_PARENT_DIR=$PWD
echo "Will build InterSpec code"
CMAKE_BUILD_PARALLEL_LEVEL=`nproc` cmake-js --directory ${InterSpecCodePath}/target/electron --architecture x64 --arch=x64 --CDCMAKE_BUILD_TYPE="Release" --CDInterSpec_NODE_MODULE_DIR="${WorkingDir}/node_modules" --CDInterSpec_FETCH_DEPENDENCIES=ON --CDBUILD_AS_LOCAL_SERVER=OFF --CDCMAKE_SHARED_LINKER_FLAGS="-static-libgcc -static-libstdc++" --CDUSE_LEAFLET_MAP=ON --CDLEAFLET_MAPS_KEY="${LEAFLET_KEY}" --CDUSE_REL_ACT_TOOL=ON --out="${CmakeBuildDir}" --target install
echo "Will package InterSpec code"
if [ -d "${WorkingDir}/InterSpec-linux-x64" ]; then
rm -rf "${WorkingDir}/InterSpec-linux-x64"
fi
echo "ls"
ls
echo "ls ${CmakeBuildDir} (CmakeBuildDir)"
ls ${CmakeBuildDir}
echo "ls ${WorkingDir} (WorkingDir)"
ls ${WorkingDir}
cd ${WorkingDir}
echo "Changed to: $(pwd)"
if [ -d "${WorkingDir}/app" ]; then
echo "app was a valid working directory"
rm -rf "${WorkingDir}/app"
else
echo "There was no app directory in cwd"
fi
echo "Will try to copy app dir from ${CmakeBuildDir} to $(pwd)."
cp -r "${CmakeBuildDir}/app" "${WorkingDir}/"
echo "Have copied app dir from ${CmakeBuildDir} to ${WorkingDir}/."
echo "About to package"
npm exec electron-packager app InterSpec --overwrite=true --platform=linux --arch=x64 --protocol=interspec --protocol-name="InterSpec" --icon="${InterSpecCodePath}/target/electron/linux/InterSpec_desktop_icon_256x256.png" --prune=true --ignore=LICENSE.md --ignore=README.md
cp "${InterSpecCodePath}/NOTICE.html" "${WorkingDir}/InterSpec-linux-x64/"
echo "This is a build of InterSpec for Linux, using InterSpec code git hash ${GIT_HASH}." > "${WorkingDir}/InterSpec-linux-x64/build_information.txt"
echo "This build is untested - please contact [email protected] for support." >> "${WorkingDir}/InterSpec-linux-x64/build_information.txt"
echo "About to zip"
zip -r InterSpec_app_Linux_Electron_latest_$(date +%Y-%m-%d).zip InterSpec-linux-x64
echo "Done"