You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The building process, in particular, cmake/external/*.cmake, creates third_party/. If we want a brand new build, we will need to remove both ${CMAKE_BINARY_DIR}, which is build/, and third_party/.
Some new users don't know all these and remove only build/ with failed expectation of brand new build.
The text was updated successfully, but these errors were encountered:
This accelerates the building and testing, but it also increased the complexity of our code base, as explained in #2571.
Also, as we have been using TeamCity CI for a while; and we don't do the cache there. It seems that the building and testing of both CPU and GPU code take ~15 mins. It seems that we don't really depend on this caching.
The building process, in particular,
cmake/external/*.cmake
, createsthird_party/
. If we want a brand new build, we will need to remove both${CMAKE_BINARY_DIR}
, which isbuild/
, andthird_party/
.Some new users don't know all these and remove only
build/
with failed expectation of brand new build.The text was updated successfully, but these errors were encountered: