We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49b3809 commit 9f4cfb2Copy full SHA for 9f4cfb2
.github/workflows/cmake_ci.yml
@@ -183,13 +183,16 @@ jobs:
183
fi
184
185
build_dir="build"
186
- rm -rf $build_dir
187
188
for arch in "${arch_flags[@]}"; do
189
arch_dir=$(echo "$arch" | tr -c 'A-Za-z0-9' '_')
190
for cfg in "${configs[@]}"; do
191
eval "$cfg"
192
+ # delete the build directory every time
193
+
194
+ rm -rf $build_dir
195
196
sanitizers="OFF"
197
if [[ "$build_type" == "Debug" && "$RUNNER_OS" != "Windows" ]]; then
198
sanitizers="ON"
0 commit comments