-
Notifications
You must be signed in to change notification settings - Fork 82
/
create-release.zsh
executable file
·184 lines (147 loc) · 5.71 KB
/
create-release.zsh
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
#!/bin/zsh
set -eu
fatal() {
echo >&2 "error: $@"
exit 1
}
banner() {
echo "################################################################################"
echo "# $@"
echo "################################################################################"
}
ensure_has_program() {
prog="$1"
command -v "$prog" >/dev/null || fatal "missing program $prog"
}
# The directory containing this script
HERE=${0:a:h}
# To include debug symbols in the release?
INCLUDE_DEBUG=1
################################################################################
# Parse arguments
################################################################################
while (( $# > 0 )); do
case $1 in
--no-debug)
INCLUDE_DEBUG=0
shift
;;
*)
fatal "unknown argument '$1'"
;;
esac
done
################################################################################
# Determine build configuration
################################################################################
# Figure out which platform we are creating a release for
case $(uname) in
Darwin*)
PLATFORM="macos"
CARGO_FEATURES="release"
;;
Linux*)
PLATFORM="linux"
CARGO_FEATURES="release"
;;
*)
fatal "unknown platform"
;;
esac
################################################################################
# Environment sanity checking
################################################################################
if [[ $PLATFORM == 'linux' ]]; then
ensure_has_program ldd
ensure_has_program readelf
elif [[ $PLATFORM == 'macos' ]]; then
else
fatal "unknown platform $PLATFORM"
fi
ensure_has_program cmake
ensure_has_program make
ensure_has_program sha256sum
banner "Build configuration"
echo "uname: $(uname)"
echo "uname -p: $(uname -p)"
echo "arch: $(arch)"
echo "PLATFORM: $PLATFORM"
echo "CARGO_FEATURES: $CARGO_FEATURES"
echo "INCLUDE_DEBUG: $INCLUDE_DEBUG"
################################################################################
# Create release directory tree
################################################################################
# Go to the repository root
cd "$HERE/.."
# Where should the release output get put?
RELEASE_DIR="release"
# Where does `cargo` build stuff?
CARGO_BUILD_DIR="target/release"
# What is the name of the program?
NOSEYPARKER="noseyparker"
mkdir "$RELEASE_DIR" || fatal "could not create release directory"
mkdir "$RELEASE_DIR"/{bin,share,share/completions,share/man,share/man/man1,share/"${NOSEYPARKER}"} || fatal "could not create release directory tree"
################################################################################
# Build release version of noseyparker
#
# WARNING: If the invocation below changes, update the Dockerfile as well.
################################################################################
banner "Building release with Cargo"
cargo build --locked --profile release --features "$CARGO_FEATURES" || fatal "failed to build ${NOSEYPARKER}"
################################################################################
# Copy artifacts into the release directory tree
################################################################################
banner "Assembling release dir"
NP="$PWD/$RELEASE_DIR/bin/${NOSEYPARKER}"
cp -p "$CARGO_BUILD_DIR/noseyparker-cli" "$NP" || fatal "failed to copy ${NOSEYPARKER}"
# Copy CHANGELOG.md, LICENSE, and README.md
cp -p CHANGELOG.md LICENSE README.md "$RELEASE_DIR/" || fatal "failed to copy assets"
if (( $INCLUDE_DEBUG )); then
if [[ $PLATFORM == 'linux' ]]; then
cp -rp "$CARGO_BUILD_DIR/noseyparker-cli.dwp" "$NP.dwp" || fatal "failed to copy ${NOSEYPARKER}.dwp"
elif [[ $PLATFORM == 'macos' ]]; then
cp -rp "$CARGO_BUILD_DIR/noseyparker-cli.dSYM" "$NP.dSYM" || fatal "failed to copy ${NOSEYPARKER}.dSYM"
else
fatal "unknown platform $PLATFORM"
fi
fi
################################################################################
# Generate shell completion scripts
################################################################################
banner "Generating shell completion scripts"
for SHELL in bash zsh fish powershell elvish; do
"$NP" generate shell-completions --shell "$SHELL" >"${RELEASE_DIR}/share/completions/${NOSEYPARKER}.$SHELL"
done
################################################################################
# Generate manpages
################################################################################
banner "Generating manpages"
"$NP" generate manpages --output "${RELEASE_DIR}/share/man/man1"
################################################################################
# Generate JSON schema
################################################################################
banner "Generating JSON schema"
"$NP" generate json-schema --output "${RELEASE_DIR}/share/${NOSEYPARKER}/report-schema.json"
################################################################################
# Sanity checking
################################################################################
banner "Release file sha256 digests"
find "$RELEASE_DIR" -type f -print0 | xargs -0 sha256sum | sort -k2
banner "Release disk use"
find "$RELEASE_DIR" -type f -print0 | xargs -0 du -shc | sort -h -k1,1
if [[ $PLATFORM == 'linux' ]]; then
banner "ldd output for ${NOSEYPARKER}"
ldd "$NP" || true
banner "readelf -d output for ${NOSEYPARKER}"
readelf -d "$NP"
elif [[ $PLATFORM == 'macos' ]]; then
banner "otool -L output for ${NOSEYPARKER}"
otool -L "$NP"
banner "otool -l output for ${NOSEYPARKER}"
otool -l "$NP"
else
fatal "unknown platform $PLATFORM"
fi
banner "${NOSEYPARKER} --version"
"$NP" --version
banner "Complete!"