forked from compiler-explorer/infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin-daily-builds.sh
executable file
·112 lines (92 loc) · 3.32 KB
/
admin-daily-builds.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
#!/bin/bash
set -exuo pipefail
finish() {
ce builder stop
}
trap finish EXIT
ce builder status
ce builder start
LOG_DIR=~/build_logs
BUILD_FAILED=0
run_on_build() {
local logdir=${LOG_DIR}/$1
local revisionfile=$2
mkdir -p "${logdir}"
shift 2
set +e
date >"${logdir}/begin"
local CE_BUILD_RESULT=""
if ! ce builder exec -- "$@" |& tee ${logdir}/log; then
BUILD_FAILED=1
CE_BUILD_RESULT=FAILED
else
CE_BUILD_RESULT=OK
fi
local CE_BUILD_STATUS=$(grep -P "^ce-build-status:" "${logdir}/log" | cut -d ':' -f 2-)
if [[ -z "${CE_BUILD_STATUS}" ]]; then
CE_BUILD_STATUS=${CE_BUILD_RESULT}
fi
echo "${CE_BUILD_STATUS}" >${logdir}/status
if [[ "${CE_BUILD_RESULT}" == "OK" ]]; then
local REVISION=$(grep -P "^ce-build-revision:" "${logdir}/log" | cut -d ':' -f 2-)
if [[ ! -z "${REVISION}" ]]; then
echo "${REVISION}" > "${revisionfile}"
fi
fi
if [[ "${CE_BUILD_STATUS}" == "OK" ]]; then
date >${logdir}/last_success
fi
date >${logdir}/end
set -e
}
build_latest() {
local IMAGE=$1
local BUILD_NAME=$2
local COMMAND=$3
local BUILD=$4
local REVISION_FILENAME=/opt/.buildrevs/${BUILD_NAME}
local REVISION=""
if [[ -f "${REVISION_FILENAME}" ]]; then
REVISION=$(cat "${REVISION_FILENAME}")
fi
run_on_build "${BUILD_NAME}" "${REVISION_FILENAME}" \
sudo docker run --rm --name "${BUILD_NAME}.build" -v/home/ubuntu/.s3cfg:/root/.s3cfg:ro -e 'LOGSPOUT=ignore' \
"compilerexplorer/${IMAGE}-builder" \
bash "${COMMAND}" "${BUILD}" s3://compiler-explorer/opt/ "${REVISION}"
log_to_json ${LOG_DIR} admin
}
build_libraries() {
local IMAGE=$1
local BUILD_NAME=library
local COMMAND=build.sh
local CONAN_PASSWORD=$(aws ssm get-parameter --name /compiler-explorer/conanpwd | jq -r .Parameter.Value)
ce builder exec -- sudo docker run --rm --name "${BUILD_NAME}.build" \
-v/home/ubuntu/.s3cfg:/root/.s3cfg:ro \
-v/opt:/opt:ro \
-e 'LOGSPOUT=ignore' \
-e "CONAN_PASSWORD=${CONAN_PASSWORD}" \
"compilerexplorer/${IMAGE}-builder" \
bash "${COMMAND}" "all" "all"
}
# IMPORTANT: when you add a build here you must also add an entry in remove_old_compilers.sh
# llvm build is fast, so lets do it first
build_latest clang llvm build.sh llvm-trunk
build_latest gcc gcc build.sh trunk
build_latest gcc gcc_contracts build.sh lock3-contracts-trunk
build_latest gcc gcc_modules build.sh cxx-modules-trunk
build_latest gcc gcc_coroutines build.sh cxx-coroutines-trunk
build_latest gcc gcc_embed build.sh embed-trunk
build_latest gcc gcc_static_analysis build.sh static-analysis-trunk
build_latest clang clang build.sh trunk
build_latest clang clang_cppx build.sh cppx-trunk
build_latest clang clang_cppx_ext build.sh cppx-ext-trunk
build_latest clang clang_relocatable build.sh relocatable-trunk
build_latest clang clang_autonsdmi build.sh autonsdmi-trunk
build_latest clang clang_lifetime build.sh lifetime-trunk
build_latest clang clang_llvmflang build.sh llvmflang-trunk
build_latest clang clang_parmexpr build-parmexpr.sh trunk
build_latest clang clang_patmat build.sh patmat-trunk
build_latest clang clang_embed build.sh embed-trunk
build_latest go go build.sh trunk
build_libraries library
exit ${BUILD_FAILED}