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 76e9aa7 commit 377784aCopy full SHA for 377784a
zorg/buildbot/builders/annotated/amdgpu-offload-cmake.py
@@ -14,6 +14,12 @@ def main(argv):
14
offload_base_dir = os.path.join(source_dir, "offload")
15
of_cmake_cache_base_dir = os.path.join(offload_base_dir, "cmake/caches")
16
17
+ with step("clean build", halt_on_fail=True):
18
+ # We have to "hard clean" the build directory, since we use a CMake cache
19
+ # If we do not do this, the resident config will take precedence and changes
20
+ # to the cache file are ignored.
21
+ run_command("rm -r *")
22
+
23
with step("cmake", halt_on_fail=True):
24
# TODO make the name of the cache file an argument to the script.
25
cmake_cache_file = os.path.join(of_cmake_cache_base_dir, "AMDGPUBot.cmake")
0 commit comments