blob: d21608df22f088ad8c94abccbdad0170c6f0528f (
plain)
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
|
#!/bin/bash
set -euo pipefail
cd /workspace/rabbitmq/deps/$project
trap 'catch $?' EXIT
SPAN_ID=${GITHUB_RUN_ID}-${project}
catch() {
buildevents cmd ${GITHUB_RUN_ID} ${SPAN_ID} stop-node -- \
make stop-node -C ../.. \
DEPS_DIR=/workspace/rabbitmq/deps \
PLUGINS='rabbitmq_federation rabbitmq_stomp'
if [ "$1" != "0" ]; then
tar -c -f - /tmp/rabbitmq-test-instances/*/log | \
xz > /workspace/broker-logs/broker-logs.tar.xz
fi
buildevents step ${GITHUB_RUN_ID} ${SPAN_ID} ${STEP_START} ${project}
}
buildevents cmd ${GITHUB_RUN_ID} ${SPAN_ID} make -- \
make DEPS_DIR=/workspace/rabbitmq/deps
buildevents cmd ${GITHUB_RUN_ID} ${SPAN_ID} start-background-broker -- \
make start-background-broker \
-C ../.. \
DEPS_DIR=/workspace/rabbitmq/deps \
PLUGINS='rabbitmq_federation rabbitmq_stomp'
buildevents cmd ${GITHUB_RUN_ID} ${SPAN_ID} rebar -- \
mix local.rebar --force
# due to https://github.com/elixir-lang/elixir/issues/7699 we
# "run" the tests, but skip them all, in order to trigger
# compilation of all *_test.exs files before we actually run themq
buildevents cmd ${GITHUB_RUN_ID} ${SPAN_ID} compile-tests -- \
make tests \
MIX_TEST_OPTS="--exclude test" \
DEPS_DIR=/workspace/rabbitmq/deps
# rabbitmq-diagnostics erlang-cookie-sources reads USER from then env
export USER=$(whoami)
buildevents cmd ${GITHUB_RUN_ID} ${SPAN_ID} tests -- \
make tests \
DEPS_DIR=/workspace/rabbitmq/deps
|