final
This commit is contained in:
@@ -0,0 +1 @@
|
||||
cmd=''
|
||||
@@ -0,0 +1 @@
|
||||
cmd='@cmd@'
|
||||
@@ -0,0 +1,108 @@
|
||||
if("master" STREQUAL "")
|
||||
message(FATAL_ERROR "Tag for git checkout should not be empty.")
|
||||
endif()
|
||||
|
||||
set(run 0)
|
||||
|
||||
if("/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitinfo.txt" IS_NEWER_THAN "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt")
|
||||
set(run 1)
|
||||
endif()
|
||||
|
||||
if(NOT run)
|
||||
message(STATUS "Avoiding repeated git clone, stamp file is up to date: '/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt'")
|
||||
return()
|
||||
endif()
|
||||
|
||||
execute_process(
|
||||
COMMAND ${CMAKE_COMMAND} -E remove_directory "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src"
|
||||
RESULT_VARIABLE error_code
|
||||
)
|
||||
if(error_code)
|
||||
message(FATAL_ERROR "Failed to remove directory: '/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src'")
|
||||
endif()
|
||||
|
||||
set(git_options)
|
||||
|
||||
# disable cert checking if explicitly told not to do it
|
||||
set(tls_verify "")
|
||||
if(NOT "x" STREQUAL "x" AND NOT tls_verify)
|
||||
list(APPEND git_options
|
||||
-c http.sslVerify=false)
|
||||
endif()
|
||||
|
||||
set(git_clone_options)
|
||||
|
||||
set(git_shallow "")
|
||||
if(git_shallow)
|
||||
list(APPEND git_clone_options --depth 1 --no-single-branch)
|
||||
endif()
|
||||
|
||||
set(git_progress "")
|
||||
if(git_progress)
|
||||
list(APPEND git_clone_options --progress)
|
||||
endif()
|
||||
|
||||
set(git_config "")
|
||||
foreach(config IN LISTS git_config)
|
||||
list(APPEND git_clone_options --config ${config})
|
||||
endforeach()
|
||||
|
||||
# try the clone 3 times in case there is an odd git clone issue
|
||||
set(error_code 1)
|
||||
set(number_of_tries 0)
|
||||
while(error_code AND number_of_tries LESS 3)
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" ${git_options} clone ${git_clone_options} --origin "origin" "https://github.com/google/googletest.git" "googletest-src"
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug"
|
||||
RESULT_VARIABLE error_code
|
||||
)
|
||||
math(EXPR number_of_tries "${number_of_tries} + 1")
|
||||
endwhile()
|
||||
if(number_of_tries GREATER 1)
|
||||
message(STATUS "Had to git clone more than once:
|
||||
${number_of_tries} times.")
|
||||
endif()
|
||||
if(error_code)
|
||||
message(FATAL_ERROR "Failed to clone repository: 'https://github.com/google/googletest.git'")
|
||||
endif()
|
||||
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" ${git_options} checkout master --
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src"
|
||||
RESULT_VARIABLE error_code
|
||||
)
|
||||
if(error_code)
|
||||
message(FATAL_ERROR "Failed to checkout tag: 'master'")
|
||||
endif()
|
||||
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" ${git_options} submodule init
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src"
|
||||
RESULT_VARIABLE error_code
|
||||
)
|
||||
if(error_code)
|
||||
message(FATAL_ERROR "Failed to init submodules in: '/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src'")
|
||||
endif()
|
||||
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" ${git_options} submodule update --recursive --init
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src"
|
||||
RESULT_VARIABLE error_code
|
||||
)
|
||||
if(error_code)
|
||||
message(FATAL_ERROR "Failed to update submodules in: '/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src'")
|
||||
endif()
|
||||
|
||||
# Complete success, update the script-last-run stamp file:
|
||||
#
|
||||
execute_process(
|
||||
COMMAND ${CMAKE_COMMAND} -E copy
|
||||
"/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitinfo.txt"
|
||||
"/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt"
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src"
|
||||
RESULT_VARIABLE error_code
|
||||
)
|
||||
if(error_code)
|
||||
message(FATAL_ERROR "Failed to copy script-last-run stamp file: '/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt'")
|
||||
endif()
|
||||
|
||||
@@ -0,0 +1,160 @@
|
||||
if("master" STREQUAL "")
|
||||
message(FATAL_ERROR "Tag for git checkout should not be empty.")
|
||||
endif()
|
||||
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" rev-list --max-count=1 HEAD
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src"
|
||||
RESULT_VARIABLE error_code
|
||||
OUTPUT_VARIABLE head_sha
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||
)
|
||||
if(error_code)
|
||||
message(FATAL_ERROR "Failed to get the hash for HEAD")
|
||||
endif()
|
||||
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" show-ref master
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src"
|
||||
OUTPUT_VARIABLE show_ref_output
|
||||
)
|
||||
# If a remote ref is asked for, which can possibly move around,
|
||||
# we must always do a fetch and checkout.
|
||||
if("${show_ref_output}" MATCHES "remotes")
|
||||
set(is_remote_ref 1)
|
||||
else()
|
||||
set(is_remote_ref 0)
|
||||
endif()
|
||||
|
||||
# Tag is in the form <remote>/<tag> (i.e. origin/master) we must strip
|
||||
# the remote from the tag.
|
||||
if("${show_ref_output}" MATCHES "refs/remotes/master")
|
||||
string(REGEX MATCH "^([^/]+)/(.+)$" _unused "master")
|
||||
set(git_remote "${CMAKE_MATCH_1}")
|
||||
set(git_tag "${CMAKE_MATCH_2}")
|
||||
else()
|
||||
set(git_remote "origin")
|
||||
set(git_tag "master")
|
||||
endif()
|
||||
|
||||
# This will fail if the tag does not exist (it probably has not been fetched
|
||||
# yet).
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" rev-list --max-count=1 master
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src"
|
||||
RESULT_VARIABLE error_code
|
||||
OUTPUT_VARIABLE tag_sha
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||
)
|
||||
|
||||
# Is the hash checkout out that we want?
|
||||
if(error_code OR is_remote_ref OR NOT ("${tag_sha}" STREQUAL "${head_sha}"))
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" fetch
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src"
|
||||
RESULT_VARIABLE error_code
|
||||
)
|
||||
if(error_code)
|
||||
message(FATAL_ERROR "Failed to fetch repository 'https://github.com/google/googletest.git'")
|
||||
endif()
|
||||
|
||||
if(is_remote_ref)
|
||||
# Check if stash is needed
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" status --porcelain
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src"
|
||||
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 not in clean state, stash changes in order to be able to be able to
|
||||
# perform git pull --rebase
|
||||
if(need_stash)
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" stash save --all;--quiet
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src"
|
||||
RESULT_VARIABLE error_code
|
||||
)
|
||||
if(error_code)
|
||||
message(FATAL_ERROR "Failed to stash changes")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Pull changes from the remote branch
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" rebase ${git_remote}/${git_tag}
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src"
|
||||
RESULT_VARIABLE error_code
|
||||
)
|
||||
if(error_code)
|
||||
# Rebase failed: Restore previous state.
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" rebase --abort
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src"
|
||||
)
|
||||
if(need_stash)
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" stash pop --index --quiet
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src"
|
||||
)
|
||||
endif()
|
||||
message(FATAL_ERROR "\nFailed to rebase in: '/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src/'.\nYou will have to resolve the conflicts manually")
|
||||
endif()
|
||||
|
||||
if(need_stash)
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" stash pop --index --quiet
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src"
|
||||
RESULT_VARIABLE error_code
|
||||
)
|
||||
if(error_code)
|
||||
# Stash pop --index failed: Try again dropping the index
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" reset --hard --quiet
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src"
|
||||
RESULT_VARIABLE error_code
|
||||
)
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" stash pop --quiet
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src"
|
||||
RESULT_VARIABLE error_code
|
||||
)
|
||||
if(error_code)
|
||||
# Stash pop failed: Restore previous state.
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" reset --hard --quiet ${head_sha}
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src"
|
||||
)
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" stash pop --index --quiet
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src"
|
||||
)
|
||||
message(FATAL_ERROR "\nFailed to unstash changes in: '/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src/'.\nYou will have to resolve the conflicts manually")
|
||||
endif()
|
||||
endif()
|
||||
endif()
|
||||
else()
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" checkout master
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src"
|
||||
RESULT_VARIABLE error_code
|
||||
)
|
||||
if(error_code)
|
||||
message(FATAL_ERROR "Failed to checkout tag: 'master'")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" submodule update --recursive --init
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src/"
|
||||
RESULT_VARIABLE error_code
|
||||
)
|
||||
if(error_code)
|
||||
message(FATAL_ERROR "Failed to update submodules in: '/Users/bradybodily/Repositories/CS3460FinalReview/Unique Pointer/cmake-build-debug/googletest-src/'")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
Reference in New Issue
Block a user