-
Notifications
You must be signed in to change notification settings - Fork 7
/
.buildbot.sh
247 lines (218 loc) · 8.69 KB
/
.buildbot.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
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
#!/bin/sh
set -eu
TRACERS="hwt swt"
# Build yklua and run the test suite.
#
# Before calling this:
# - `yk-config` must be in PATH.
# - YK_BUILD_TYPE must be set.
test_yklua() {
if [ ! -e "yklua" ]; then
git clone https://github.com/ykjit/yklua
fi
cd yklua
make clean
make -j $(nproc)
cd tests
YKD_SERIALISE_COMPILATION=1 ../src/lua -e"_U=true" all.lua
../src/lua -e"_U=true" all.lua
cd ../..
}
# Check that the ykllvm commit in the submodule is from the main branch.
# Due to the way github works, this may not be the case!
cd ykllvm
git log --pretty=format:%H -n 100 --no-show-signature origin/main | \
grep $(git rev-parse HEAD)
cd ..
# Install rustup.
CARGO_HOME="$(pwd)/.cargo"
export CARGO_HOME
RUSTUP_HOME="$(pwd)/.rustup"
export RUSTUP_HOME
export RUSTUP_INIT_SKIP_PATH_CHECK="yes"
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup.sh
sh rustup.sh --default-host x86_64-unknown-linux-gnu \
--default-toolchain nightly \
--no-modify-path \
--profile default \
-y
export PATH="${CARGO_HOME}"/bin/:"$PATH"
# Formatting problems are frequent in PRs, and easy to fix, so try and catch
# those before doing anything complicated.
cargo fmt --all -- --check
# We now need a copy of ykllvm. Building this is quite slow so if there's a
# cached version in `ykllvm_cache/` we use that. Whether we build our own or
# use a cached copy, the installed version ends up in ykllvm/inst. Notice that
# we use the release version because some of the checks we run below (e.g.
# unused warnings) otherwise run slowly.
cd ykllvm
ykllvm_hash=$(git rev-parse HEAD)
cached_ykllvm=0
if [ -f /opt/ykllvm_cache/ykllvm-release-with-assertions-"${ykllvm_hash}".tgz ]; then
mkdir inst
cd inst
tar xfz /opt/ykllvm_cache/ykllvm-release-with-assertions-"${ykllvm_hash}".tgz
# Minimally check that we can at least run `clang --version`: if we can't,
# we assume the cached binary is too old (e.g. linking against old shared
# objects) and that we should build our own version.
if bin/clang --version > /dev/null; then
cached_ykllvm=1
else
echo "Warning: cached ykllvm not runnable; building from scratch" > /dev/stderr
cd ..
rm -rf inst
fi
fi
if [ "$cached_ykllvm" -eq 0 ]; then
# We could let yk build two copies of LLVM, but we also want to: check that
# YKB_YKLLVM_BIN_DIR works; and we want access to clang-format from a build
# of LLVM. So we first build (or use a prebuilt version) of our
# ykllvm-with-assertions, use the YKB_YKLLVM_BIN_DIR variable to have yk use
# that, and use its clang-format.
mkdir -p build
cd build
# Due to an LLVM bug, PIE breaks our mapper, and it's not enough to pass
# `-fno-pie` to clang for some reason:
# https://github.com/llvm/llvm-project/issues/57085
cmake -DCMAKE_INSTALL_PREFIX="$(pwd)/../inst" \
-DLLVM_INSTALL_UTILS=On \
-DCMAKE_BUILD_TYPE=release \
-DLLVM_ENABLE_ASSERTIONS=On \
-DLLVM_ENABLE_PROJECTS="lld;clang" \
-DCLANG_DEFAULT_PIE_ON_LINUX=OFF \
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_C_COMPILER=/usr/bin/clang \
-DCMAKE_CXX_COMPILER=/usr/bin/clang++ \
-GNinja \
../llvm
cmake --build .
cmake --install .
fi
YKLLVM_BIN_DIR=$(pwd)/../inst/bin
export YKB_YKLLVM_BIN_DIR="${YKLLVM_BIN_DIR}"
cd ../../
# Check C/C++ formatting.
PATH=${YKB_YKLLVM_BIN_DIR}:${PATH} cargo xtask cfmt --check
cargo install cargo-diff-tools
if [ "$CI_RUNNER" = buildbot ] ; then
# When running under buildbot, we need to `git fetch` data from the remote if we want
# cargo-clippy-def to work later.
git fetch --no-recurse-submodules origin master:refs/remotes/origin/master
fi
for tracer in ${TRACERS}; do
export YKB_TRACER="${tracer}"
# Check for annoying compiler warnings in each package.
WARNING_DEFINES="-D unused-variables -D dead-code -D unused-imports"
for p in $(sed -n -e '/^members =/,/^\]$/{/^members =/d;/^\]$/d;p;}' \
Cargo.toml | \
tr -d ' \t\",' | grep -v xtask); do
echo "$WARNING_DEFINES" | xargs cargo rustc -p "$p" --profile check --lib --
# For some reason, we can't do these checks on crates with binary targets.
if [ "$p" != "ykrt" ] && [ "$p" != "tests" ]; then
echo "$WARNING_DEFINES" | xargs cargo rustc -p "$p" --profile check --tests --
echo "$WARNING_DEFINES" | xargs cargo rustc -p "$p" --profile check --benches --
fi
done
echo "$WARNING_DEFINES" | xargs cargo rustc -p tests --profile check --bin dump_ir --
echo "$WARNING_DEFINES" | xargs cargo rustc -p tests --profile check --bin gdb_c_test --
echo "$WARNING_DEFINES" | xargs cargo rustc -p xtask --profile check --bin xtask --
# Error if Clippy detects any warnings introduced in lines changed in this PR.
cargo-clippy-diff origin/master -- --all-features -- -D warnings
done
# Run the tests multiple times on hwt to try and catch non-deterministic
# failures. But running everything so often is expensive, so run other tracers'
# tests just once.
export YKB_TRACER=hwt
echo "===> Running hwt tests"
for _ in $(seq 10); do
RUST_TEST_SHUFFLE=1 cargo test
done
# test yklua/hwt in debug mode.
PATH=$(pwd)/bin:${PATH} YK_BUILD_TYPE=debug YKB_TRACER=hwt test_yklua
for tracer in ${TRACERS}; do
if [ "$tracer" = "hwt" ]; then
continue
fi
echo "===> Running ${tracer} tests"
RUST_TEST_SHUFFLE=1 cargo test
done
# Test with LLVM sanitisers
rustup component add rust-src
# The thread sanitiser does have false positives (albeit much reduced by `-Z
# build-std`), so we have to add a suppression file to avoid those stopping
# this script from succeeding. This does mean that we might suppress some true
# positives, but there's little we can do about that.
suppressions_path=$(mktemp)
cat << EOF > "$suppressions_path"
# Thread sanitiser doesn't know about atomic operations.
race:core::sync::atomic::atomic_
# count_to_hot_location moves something into a mutex, at which point accesses
# to it are safe, but thread sanitiser doesn't seem to pick up the link between
# the two.
race:ykrt::location::Location::count_to_hot_location
EOF
for tracer in $TRACERS; do
export YKB_TRACER="${tracer}"
cargo build
ASAN_SYMBOLIZER_PATH="${YKLLVM_BIN_DIR}/llvm-symbolizer" \
RUSTFLAGS="-Z sanitizer=address" cargo test \
-Z build-std \
--target x86_64-unknown-linux-gnu
RUST_TEST_THREADS=1 \
RUSTFLAGS="-Z sanitizer=thread" \
TSAN_OPTIONS="suppressions=$suppressions_path" \
cargo test \
-Z build-std \
--target x86_64-unknown-linux-gnu
done
# Later on we are going to need to install cargo-deny and mdbook. We kick the
# install jobs off now so that at least some work (e.g. downloading crates) can
# happen in parallel, speeding up the overall process.
cargo_deny_mdbook_tmp=$(mktemp)
( cargo install --locked cargo-deny ; cargo install --locked mdbook ) \
>"${cargo_deny_mdbook_tmp}" 2>&1 &
cargo_deny_mdbook_pid=$!
# We now want to test building with `--release`.
if [ "$cached_ykllvm" -eq 0 ]; then
# If we don't have a cached copy of ykllvm, we also take this as an
# opportunity to check that yk can build ykllvm, which requires unsetting
# YKB_YKLLVM_BIN_DIR. In essence, we now repeat much of what we did above
# but with `--release`.
unset YKB_YKLLVM_BIN_DIR
export YKB_YKLLVM_BUILD_ARGS="define:CMAKE_C_COMPILER=/usr/bin/clang,define:CMAKE_CXX_COMPILER=/usr/bin/clang++"
fi
for tracer in $TRACERS; do
export YKB_TRACER="${tracer}"
echo "===> Running ${tracer} tests"
RUST_TEST_SHUFFLE=1 cargo test --release
if [ "${tracer}" = "hwt" ]; then
# test yklua/hwt in release mode.
PATH=$(pwd)/bin:${PATH} YK_BUILD_TYPE=release YKB_TRACER=hwt test_yklua
# Do a quick run of the benchmark suite as a smoke test.
pipx install rebench
git clone https://github.com/ykjit/yk-benchmarks
cd yk-benchmarks
ln -s ../yklua .
sed -e 's/executions: \[Lua, YkLua\]/executions: [YkLua]/' \
-e 's/executable: yklua/executable: lua/' \
rebench.conf > rebench2.conf
~/.local/bin/rebench --quick --no-denoise -c rebench2.conf
cd ..
fi
done
# We want to check that the benchmarks build and run correctly, but want to
# ignore the results, so run them for the minimum possible time.
#
# Note that --profile-time doesn't work without --bench, so we have to run each
# benchmark individually.
for b in collect_and_decode promote; do
YKB_TRACER=hwt cargo bench --bench "${b}" -- --profile-time 1
done
# Check licenses.
wait "${cargo_deny_mdbook_pid}" || ( cat "${cargo_deny_mdbook_tmp}" && exit 1 )
cargo-deny check license
# Build the docs
cd docs
mdbook build
test -d book
cd ..