|
|
|
|
|
|
| cmake_minimum_required(VERSION ${CMAKE_VERSION})
|
|
|
|
|
|
|
| cmake_language(GET_MESSAGE_LOG_LEVEL active_log_level)
|
| if(active_log_level MATCHES "DEBUG|TRACE")
|
| set(maybe_show_command COMMAND_ECHO STDOUT)
|
| else()
|
| set(maybe_show_command "")
|
| endif()
|
|
|
| function(do_fetch)
|
| message(VERBOSE "Fetching latest from the remote @git_remote_name@")
|
| execute_process(
|
| COMMAND "@git_EXECUTABLE@" --git-dir=.git fetch --tags --force "@git_remote_name@"
|
| WORKING_DIRECTORY "@work_dir@"
|
| COMMAND_ERROR_IS_FATAL LAST
|
| ${maybe_show_command}
|
| )
|
| endfunction()
|
|
|
| function(get_hash_for_ref ref out_var err_var)
|
| execute_process(
|
| COMMAND "@git_EXECUTABLE@" --git-dir=.git rev-parse "${ref}^0"
|
| WORKING_DIRECTORY "@work_dir@"
|
| RESULT_VARIABLE error_code
|
| OUTPUT_VARIABLE ref_hash
|
| ERROR_VARIABLE error_msg
|
| OUTPUT_STRIP_TRAILING_WHITESPACE
|
| )
|
| if(error_code)
|
| set(${out_var} "" PARENT_SCOPE)
|
| else()
|
| set(${out_var} "${ref_hash}" PARENT_SCOPE)
|
| endif()
|
| set(${err_var} "${error_msg}" PARENT_SCOPE)
|
| endfunction()
|
|
|
| get_hash_for_ref(HEAD head_sha error_msg)
|
| if(head_sha STREQUAL "")
|
| message(FATAL_ERROR "Failed to get the hash for HEAD:\n${error_msg}")
|
| endif()
|
|
|
| if("${can_fetch}" STREQUAL "")
|
| set(can_fetch "@can_fetch_default@")
|
| endif()
|
|
|
| execute_process(
|
| COMMAND "@git_EXECUTABLE@" --git-dir=.git show-ref "@git_tag@"
|
| WORKING_DIRECTORY "@work_dir@"
|
| OUTPUT_VARIABLE show_ref_output
|
| )
|
| if(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/remotes/")
|
|
|
|
|
| if(can_fetch)
|
| do_fetch()
|
| endif()
|
| set(checkout_name "@git_tag@")
|
|
|
| elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/tags/")
|
|
|
|
|
|
|
|
|
|
|
|
|
| get_hash_for_ref("@git_tag@" tag_sha error_msg)
|
| if(tag_sha STREQUAL head_sha)
|
| message(VERBOSE "Already at requested tag: @git_tag@")
|
| return()
|
| endif()
|
|
|
| if(can_fetch)
|
| do_fetch()
|
| endif()
|
| set(checkout_name "@git_tag@")
|
|
|
| elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/heads/")
|
|
|
|
|
|
|
|
|
|
|
| if(can_fetch)
|
| do_fetch()
|
| endif()
|
| set(checkout_name "@git_remote_name@/@git_tag@")
|
|
|
| else()
|
| get_hash_for_ref("@git_tag@" tag_sha error_msg)
|
| if(tag_sha STREQUAL head_sha)
|
|
|
| message(VERBOSE "Already at requested ref: ${tag_sha}")
|
| return()
|
|
|
| elseif(tag_sha STREQUAL "")
|
|
|
| if(NOT can_fetch)
|
| message(FATAL_ERROR
|
| "Requested git ref \"@git_tag@\" is not present locally, and not "
|
| "allowed to contact remote due to UPDATE_DISCONNECTED setting."
|
| )
|
| endif()
|
|
|
|
|
|
|
|
|
| if(NOT error_msg STREQUAL "")
|
| message(DEBUG "${error_msg}")
|
| endif()
|
| do_fetch()
|
| set(checkout_name "@git_tag@")
|
|
|
| else()
|
|
|
|
|
|
|
| set(checkout_name "@git_tag@")
|
| if(NOT error_msg STREQUAL "")
|
| message(WARNING "${error_msg}")
|
| endif()
|
|
|
| endif()
|
| endif()
|
|
|
| set(git_update_strategy "@git_update_strategy@")
|
| if(git_update_strategy STREQUAL "")
|
|
|
| set(git_update_strategy REBASE)
|
| endif()
|
|
|
| if(git_update_strategy MATCHES "^REBASE(_CHECKOUT)?$")
|
|
|
|
|
|
|
| execute_process(
|
| COMMAND "@git_EXECUTABLE@" --git-dir=.git symbolic-ref -q HEAD
|
| WORKING_DIRECTORY "@work_dir@"
|
| OUTPUT_VARIABLE current_branch
|
| OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
|
|
|
| )
|
|
|
| if(current_branch STREQUAL "")
|
|
|
|
|
|
|
| set(git_update_strategy CHECKOUT)
|
|
|
| else()
|
| execute_process(
|
| COMMAND "@git_EXECUTABLE@" --git-dir=.git for-each-ref "--format=%(upstream:short)" "${current_branch}"
|
| WORKING_DIRECTORY "@work_dir@"
|
| OUTPUT_VARIABLE upstream_branch
|
| OUTPUT_STRIP_TRAILING_WHITESPACE
|
| COMMAND_ERROR_IS_FATAL ANY
|
| )
|
| if(NOT upstream_branch STREQUAL checkout_name)
|
|
|
|
|
|
|
|
|
|
|
| set(git_update_strategy CHECKOUT)
|
| endif()
|
|
|
| endif()
|
| elseif(NOT git_update_strategy STREQUAL "CHECKOUT")
|
| message(FATAL_ERROR "Unsupported git update strategy: ${git_update_strategy}")
|
| endif()
|
|
|
|
|
|
|
| execute_process(
|
| COMMAND "@git_EXECUTABLE@" --git-dir=.git status --porcelain
|
| WORKING_DIRECTORY "@work_dir@"
|
| RESULT_VARIABLE error_code
|
| OUTPUT_VARIABLE repo_status
|
| )
|
| if(error_code)
|
| message(FATAL_ERROR "Failed to get the status")
|
| endif()
|
| string(LENGTH "${repo_status}" need_stash)
|
|
|
|
|
|
|
| if(need_stash)
|
| execute_process(
|
| COMMAND "@git_EXECUTABLE@" --git-dir=.git stash save @git_stash_save_options@
|
| WORKING_DIRECTORY "@work_dir@"
|
| COMMAND_ERROR_IS_FATAL ANY
|
| ${maybe_show_command}
|
| )
|
| endif()
|
|
|
| if(git_update_strategy STREQUAL "CHECKOUT")
|
| execute_process(
|
| COMMAND "@git_EXECUTABLE@" --git-dir=.git checkout "${checkout_name}"
|
| WORKING_DIRECTORY "@work_dir@"
|
| COMMAND_ERROR_IS_FATAL ANY
|
| ${maybe_show_command}
|
| )
|
| else()
|
| execute_process(
|
| COMMAND "@git_EXECUTABLE@" --git-dir=.git rebase "${checkout_name}"
|
| WORKING_DIRECTORY "@work_dir@"
|
| RESULT_VARIABLE error_code
|
| OUTPUT_VARIABLE rebase_output
|
| ERROR_VARIABLE rebase_output
|
| )
|
| if(error_code)
|
|
|
| execute_process(
|
| COMMAND "@git_EXECUTABLE@" --git-dir=.git rebase --abort
|
| WORKING_DIRECTORY "@work_dir@"
|
| ${maybe_show_command}
|
| )
|
|
|
| if(NOT git_update_strategy STREQUAL "REBASE_CHECKOUT")
|
|
|
| if(need_stash)
|
| execute_process(
|
| COMMAND "@git_EXECUTABLE@" --git-dir=.git stash pop --index --quiet
|
| WORKING_DIRECTORY "@work_dir@"
|
| ${maybe_show_command}
|
| )
|
| endif()
|
| message(FATAL_ERROR "\nFailed to rebase in: '@work_dir@'."
|
| "\nOutput from the attempted rebase follows:"
|
| "\n${rebase_output}"
|
| "\n\nYou will have to resolve the conflicts manually")
|
| endif()
|
|
|
|
|
|
|
|
|
|
|
|
|
| string(TIMESTAMP tag_timestamp "%Y%m%dT%H%M%S" UTC)
|
| set(tag_name _cmake_ExternalProject_moved_from_here_${tag_timestamp}Z)
|
| set(error_log_file ${CMAKE_CURRENT_LIST_DIR}/rebase_error_${tag_timestamp}Z.log)
|
| file(WRITE ${error_log_file} "${rebase_output}")
|
| message(WARNING "Rebase failed, output has been saved to ${error_log_file}"
|
| "\nFalling back to checkout, previous commit tagged as ${tag_name}")
|
| execute_process(
|
| COMMAND "@git_EXECUTABLE@" --git-dir=.git tag -a
|
| -m "ExternalProject attempting to move from here to ${checkout_name}"
|
| ${tag_name}
|
| WORKING_DIRECTORY "@work_dir@"
|
| COMMAND_ERROR_IS_FATAL ANY
|
| ${maybe_show_command}
|
| )
|
|
|
| execute_process(
|
| COMMAND "@git_EXECUTABLE@" --git-dir=.git checkout "${checkout_name}"
|
| WORKING_DIRECTORY "@work_dir@"
|
| COMMAND_ERROR_IS_FATAL ANY
|
| ${maybe_show_command}
|
| )
|
| endif()
|
| endif()
|
|
|
| if(need_stash)
|
|
|
| execute_process(
|
| COMMAND "@git_EXECUTABLE@" --git-dir=.git stash pop --index --quiet
|
| WORKING_DIRECTORY "@work_dir@"
|
| RESULT_VARIABLE error_code
|
| ${maybe_show_command}
|
| )
|
| if(error_code)
|
|
|
| execute_process(
|
| COMMAND "@git_EXECUTABLE@" --git-dir=.git reset --hard --quiet
|
| WORKING_DIRECTORY "@work_dir@"
|
| ${maybe_show_command}
|
| )
|
| execute_process(
|
| COMMAND "@git_EXECUTABLE@" --git-dir=.git stash pop --quiet
|
| WORKING_DIRECTORY "@work_dir@"
|
| RESULT_VARIABLE error_code
|
| ${maybe_show_command}
|
| )
|
| if(error_code)
|
|
|
| execute_process(
|
| COMMAND "@git_EXECUTABLE@" --git-dir=.git reset --hard --quiet ${head_sha}
|
| WORKING_DIRECTORY "@work_dir@"
|
| ${maybe_show_command}
|
| )
|
| execute_process(
|
| COMMAND "@git_EXECUTABLE@" --git-dir=.git stash pop --index --quiet
|
| WORKING_DIRECTORY "@work_dir@"
|
| ${maybe_show_command}
|
| )
|
| message(FATAL_ERROR "\nFailed to unstash changes in: '@work_dir@'."
|
| "\nYou will have to resolve the conflicts manually")
|
| endif()
|
| endif()
|
| endif()
|
|
|
| set(init_submodules "@init_submodules@")
|
| if(init_submodules)
|
| execute_process(
|
| COMMAND "@git_EXECUTABLE@"
|
| --git-dir=.git @git_submodules_config_options@
|
| submodule update @git_submodules_recurse@ --init @git_submodules@
|
| WORKING_DIRECTORY "@work_dir@"
|
| COMMAND_ERROR_IS_FATAL ANY
|
| ${maybe_show_command}
|
| )
|
| endif()
|
|
|