Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
CMake
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
David Golden
CMake
Commits
33218f6a
Commit
33218f6a
authored
8 years ago
by
Ruslan Baratov
Committed by
Brad King
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
ExternalProject: Remove unused verify script logic
The logic to re-run the download script will be moved elsewhere.
parent
e5409d1e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Modules/ExternalProject.cmake
+2
-17
2 additions, 17 deletions
Modules/ExternalProject.cmake
with
2 additions
and
17 deletions
Modules/ExternalProject.cmake
+
2
−
17
View file @
33218f6a
...
...
@@ -935,30 +935,16 @@ message(STATUS \"downloading... done\")
endfunction
()
function
(
_ep_write_verifyfile_script script_filename LOCAL hash download_script
)
set
(
retries 0
)
function
(
_ep_write_verifyfile_script script_filename LOCAL hash
)
if
(
"
${
hash
}
"
MATCHES
"
${
_ep_hash_regex
}
"
)
set
(
algo
"
${
CMAKE_MATCH_1
}
"
)
string
(
TOLOWER
"
${
CMAKE_MATCH_2
}
"
expect_value
)
set
(
script_content
"set(expect_value
\"
${
expect_value
}
\"
)
set(attempt 0)
set(succeeded 0)
while(
\$
{attempt} LESS
${
retries
}
OR
\$
{attempt} EQUAL
${
retries
}
AND NOT
\$
{succeeded})
file(
${
algo
}
\"\$
{file}
\"
actual_value)
if(
\"\$
{actual_value}
\"
STREQUAL
\"\$
{expect_value}
\"
)
set(succeeded 1)
elseif(
\$
{attempt} LESS
${
retries
}
)
message(STATUS
\"
${
algo
}
hash of
\$
{file}
does not match expected value
expected:
\$
{expect_value}
actual:
\$
{actual_value}
Retrying download.
\"
)
file(REMOVE
\"\$
{file}
\"
)
execute_process(COMMAND
\$
{CMAKE_COMMAND} -P
\"
${
download_script
}
\"
)
endif()
math(EXPR attempt
\"\$
{attempt} + 1
\"
)
endwhile()
if(
\$
{succeeded})
message(STATUS
\"
verifying file... done
\"
)
...
...
@@ -1899,7 +1885,6 @@ function(_ep_add_download_command name)
set
(
repository
"external project URL"
)
set
(
module
"
${
url
}
"
)
set
(
tag
"
${
hash
}
"
)
set
(
download_script
""
)
configure_file
(
"
${
CMAKE_ROOT
}
/Modules/RepositoryInfo.txt.in"
"
${
stamp_dir
}
/
${
name
}
-urlinfo.txt"
...
...
@@ -1952,7 +1937,7 @@ function(_ep_add_download_command name)
endif
()
set
(
comment
"Performing download step (
${
steps
}
) for '
${
name
}
'"
)
endif
()
_ep_write_verifyfile_script
(
"
${
stamp_dir
}
/verify-
${
name
}
.cmake"
"
${
file
}
"
"
${
hash
}
"
"
${
download_script
}
"
)
_ep_write_verifyfile_script
(
"
${
stamp_dir
}
/verify-
${
name
}
.cmake"
"
${
file
}
"
"
${
hash
}
"
)
list
(
APPEND cmd
${
CMAKE_COMMAND
}
-P
${
stamp_dir
}
/verify-
${
name
}
.cmake
COMMAND
)
if
(
NOT no_extract
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment