Skip to content

Commit 284f886

Browse files
[𝘀𝗽𝗿] initial version
Created using spr 1.3.6
1 parent d8c43e6 commit 284f886

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.ci/monolithic-linux.sh

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,12 @@ cmake -S "${MONOREPO_ROOT}"/llvm -B "${BUILD_DIR}" \
100100
start-group "ninja"
101101

102102
# Targets are not escaped as they are passed as separate arguments.
103-
ninja -C "${BUILD_DIR}" -k 0 ${targets}
103+
ninja -C "${BUILD_DIR}" -k 0 ${targets} | tee ninja.log
104104

105105
if [[ "${runtime_targets}" != "" ]]; then
106106
start-group "ninja Runtimes"
107107

108-
ninja -C "${BUILD_DIR}" ${runtime_targets}
108+
ninja -C "${BUILD_DIR}" ${runtime_targets} | tee ninja_runtimes.log
109109
fi
110110

111111
# Compiling runtimes with just-built Clang and running their tests
@@ -120,7 +120,8 @@ if [[ "${runtime_targets_needs_reconfig}" != "" ]]; then
120120

121121
start-group "ninja Runtimes C++26"
122122

123-
ninja -C "${BUILD_DIR}" ${runtime_targets_needs_reconfig}
123+
ninja -C "${BUILD_DIR}" ${runtime_targets_needs_reconfig} \
124+
| tee ninja_runtimes_needs_reconfig1.log
124125

125126
start-group "CMake Runtimes Clang Modules"
126127

@@ -131,5 +132,6 @@ if [[ "${runtime_targets_needs_reconfig}" != "" ]]; then
131132

132133
start-group "ninja Runtimes Clang Modules"
133134

134-
ninja -C "${BUILD_DIR}" ${runtime_targets_needs_reconfig}
135+
ninja -C "${BUILD_DIR}" ${runtime_targets_needs_reconfig} \
136+
| tee ninja_runtimes_needs_reconfig2.log
135137
fi

.ci/monolithic-windows.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,4 @@ cmake -S "${MONOREPO_ROOT}"/llvm -B "${BUILD_DIR}" \
8888
start-group "ninja"
8989

9090
# Targets are not escaped as they are passed as separate arguments.
91-
ninja -C "${BUILD_DIR}" -k 0 ${targets}
91+
ninja -C "${BUILD_DIR}" -k 0 ${targets} | tee ninja.log

0 commit comments

Comments
 (0)