Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
Hsin-Yu Chien
edx-platform-release
Commits
e0deca26
Commit
e0deca26
authored
10 years ago
by
Christine Lytwynec
Browse files
Options
Downloads
Patches
Plain Diff
fix for prereqs installation cache check
parent
1a9f98b2
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pavelib/prereqs.py
+34
-9
34 additions, 9 deletions
pavelib/prereqs.py
rakelib/prereqs_deprecated.rake
+3
-3
3 additions, 3 deletions
rakelib/prereqs_deprecated.rake
with
37 additions
and
12 deletions
pavelib/prereqs.py
+
34
−
9
View file @
e0deca26
...
...
@@ -85,20 +85,22 @@ def prereq_cache(cache_name, paths, install_func):
raise
with
open
(
cache_file_path
,
"
w
"
)
as
cache_file
:
cache_file
.
write
(
new_hash
)
# Since the pip requirement files are modified during the install
# process, we need to store the hash generated AFTER the installation
post_install_hash
=
compute_fingerprint
(
paths
)
cache_file
.
write
(
post_install_hash
)
else
:
print
(
'
{cache} unchanged, skipping...
'
.
format
(
cache
=
cache_name
))
def
install_
ruby_prereqs
():
def
ruby_prereqs
_installation
():
"""
Installs Ruby prereqs
"""
sh
(
'
bundle install --quiet
'
)
def
install_
node_prereqs
():
def
node_prereqs
_installation
():
"""
Installs Node prerequisites
"""
...
...
@@ -106,8 +108,7 @@ def install_node_prereqs():
sh
(
'
npm install
'
)
@task
def
install_python_prereqs
():
def
python_prereqs_installation
():
"""
Installs Python prerequisites
"""
...
...
@@ -115,6 +116,30 @@ def install_python_prereqs():
sh
(
"
pip install -q --exists-action w -r {req_file}
"
.
format
(
req_file
=
req_file
))
@task
def
install_ruby_prereqs
():
"""
Installs Ruby prereqs
"""
prereq_cache
(
"
Ruby prereqs
"
,
[
"
Gemfile
"
],
ruby_prereqs_installation
)
@task
def
install_node_prereqs
():
"""
Installs Node prerequisites
"""
prereq_cache
(
"
Node prereqs
"
,
[
"
package.json
"
],
node_prereqs_installation
)
@task
def
install_python_prereqs
():
"""
Installs Python prerequisites
"""
prereq_cache
(
"
Python prereqs
"
,
PYTHON_REQ_FILES
+
[
sysconfig
.
get_python_lib
()],
python_prereqs_installation
)
@task
def
install_prereqs
():
"""
...
...
@@ -123,6 +148,6 @@ def install_prereqs():
if
os
.
environ
.
get
(
"
NO_PREREQ_INSTALL
"
,
False
):
return
prereq_cache
(
"
Ruby prereqs
"
,
[
"
Gemfile
"
],
install_ruby_prereqs
)
prereq_cache
(
"
Node prereqs
"
,
[
"
package.json
"
],
install_node_prereqs
)
prereq_cache
(
"
Python prereqs
"
,
PYTHON_REQ_FILES
+
[
sysconfig
.
get_python_lib
()],
install_python_prereqs
)
install_ruby_prereqs
(
)
install_node_prereqs
(
)
install_python_prereqs
(
)
This diff is collapsed.
Click to expand it.
rakelib/prereqs_deprecated.rake
+
3
−
3
View file @
e0deca26
...
...
@@ -15,7 +15,7 @@ def deprecated(deprecated, deprecated_by)
end
deprecated
(
'install_prereqs'
,
'paver install_prereqs'
)
deprecated
(
'install_node_prereqs'
,
'paver install_prereqs'
)
deprecated
(
'install_ruby_prereqs'
,
'paver install_prereqs'
)
deprecated
(
'install_python_prereqs'
,
'paver install_prereqs'
)
deprecated
(
'install_node_prereqs'
,
'paver install_
node_
prereqs'
)
deprecated
(
'install_ruby_prereqs'
,
'paver install_
ruby_
prereqs'
)
deprecated
(
'install_python_prereqs'
,
'paver install_
python_
prereqs'
)
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