File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -100,12 +100,12 @@ cmake -S "${MONOREPO_ROOT}"/llvm -B "${BUILD_DIR}" \
100
100
start-group " ninja"
101
101
102
102
# 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
104
104
105
105
if [[ " ${runtime_targets} " != " " ]]; then
106
106
start-group " ninja Runtimes"
107
107
108
- ninja -C " ${BUILD_DIR} " ${runtime_targets}
108
+ ninja -C " ${BUILD_DIR} " ${runtime_targets} | tee ninja_runtimes.log
109
109
fi
110
110
111
111
# Compiling runtimes with just-built Clang and running their tests
@@ -120,7 +120,8 @@ if [[ "${runtime_targets_needs_reconfig}" != "" ]]; then
120
120
121
121
start-group " ninja Runtimes C++26"
122
122
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
124
125
125
126
start-group " CMake Runtimes Clang Modules"
126
127
@@ -131,5 +132,6 @@ if [[ "${runtime_targets_needs_reconfig}" != "" ]]; then
131
132
132
133
start-group " ninja Runtimes Clang Modules"
133
134
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
135
137
fi
Original file line number Diff line number Diff line change @@ -88,4 +88,4 @@ cmake -S "${MONOREPO_ROOT}"/llvm -B "${BUILD_DIR}" \
88
88
start-group " ninja"
89
89
90
90
# 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
You can’t perform that action at this time.
0 commit comments