From: Kefu Chai Date: Thu, 26 Aug 2021 15:57:00 +0000 (+0800) Subject: cmake: use upstream repo for fio X-Git-Tag: v16.2.11~358^2~36 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ddf6e61f8e7da35dc2341503acb0f5363b4c4385;p=ceph.git cmake: use upstream repo for fio this change partially reverts 10baab3fc8293b8c30ca90a4acd76f70d011f1b5, but since the fix for C++ build is not included by any tag or branche so far. let's just use the sha1 for now. Signed-off-by: Kefu Chai (cherry picked from commit b65d0747b57ad9a32030ed49322f028c449a1d5f) --- diff --git a/cmake/modules/BuildFIO.cmake b/cmake/modules/BuildFIO.cmake index 8a466c61a446..dcd2f312dd9e 100644 --- a/cmake/modules/BuildFIO.cmake +++ b/cmake/modules/BuildFIO.cmake @@ -13,10 +13,10 @@ function(build_fio) file(MAKE_DIRECTORY ${source_dir}) ExternalProject_Add(fio_ext UPDATE_COMMAND "" # this disables rebuild on each run - GIT_REPOSITORY "https://github.com/ceph/fio.git" + GIT_REPOSITORY "https://github.com/axboe/fio.git" GIT_CONFIG advice.detachedHead=false GIT_SHALLOW 1 - GIT_TAG "quincy-with-cxx" + GIT_TAG "7f02f21f53ccd5e2448086f8e9015489693dd2dc" SOURCE_DIR ${source_dir} BUILD_IN_SOURCE 1 CONFIGURE_COMMAND /configure