Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
configuration
Commits
ae0ad293
Commit
ae0ad293
authored
Oct 31, 2013
by
John Jarvis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
skip some tasks when the edx-platfor checkout hasn't changed
parent
73bff7d6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
14 deletions
+16
-14
playbooks/roles/edxapp/tasks/deploy.yml
+13
-11
playbooks/roles/edxapp/tasks/service_variant_config.yml
+3
-3
No files found.
playbooks/roles/edxapp/tasks/deploy.yml
View file @
ae0ad293
...
...
@@ -30,14 +30,14 @@
# Do A Checkout
-
name
:
edxapp | checkout edx-platform repo into {{edxapp_code_dir}}
git
:
dest={{edxapp_code_dir}} repo={{edx_platform_repo}} version={{edx_platform_commit}}
register
:
edx_platform_chec
kout
register
:
ch
kout
sudo_user
:
"
{{
edxapp_user
}}"
tags
:
-
deploy
-
name
:
edxapp | git clean after checking out edx-platform
shell
:
cd {{edxapp_code_dir}} && git clean -xdf
when
:
edx_platform_chec
kout.changed
when
:
ch
kout.changed
sudo_user
:
"
{{
edxapp_user
}}"
tags
:
-
deploy
...
...
@@ -55,6 +55,7 @@
/usr/bin/md5sum {{ " ".join(edxapp_all_req_files) }} 2>/dev/null > /var/tmp/edxapp.req.new
sudo_user
:
"
{{
edxapp_user
}}"
ignore_errors
:
true
when
:
chkout.changed
tags
:
-
deploy
...
...
@@ -72,7 +73,7 @@
/bin/sed -i -e 's/github\.com/{{ COMMON_GIT_MIRROR }}/g' {{ item }}
with_items
:
edxapp_all_req_files
sudo_user
:
"
{{
edxapp_user
}}"
when
:
not inst.stat.exists or new.stat.md5 != inst.stat.md5
when
:
chkout.changed and
not inst.stat.exists or new.stat.md5 != inst.stat.md5
tags
:
deploy
...
...
@@ -84,7 +85,7 @@
executable=/bin/bash
environment
:
"
{{
edxapp_environment
}}"
sudo_user
:
"
{{
edxapp_user
}}"
when
:
not inst.stat.exists or new.stat.md5 != inst.stat.md5
when
:
chkout.changed and
not inst.stat.exists or new.stat.md5 != inst.stat.md5
tags
:
deploy
-
name
:
edxapp | bundle install
...
...
@@ -94,7 +95,7 @@
executable=/bin/bash
sudo_user
:
"
{{
edxapp_user
}}"
environment
:
"
{{
edxapp_environment
}}"
when
:
not inst.stat.exists or new.stat.md5 != inst.stat.md5
when
:
chkout.changed and
not inst.stat.exists or new.stat.md5 != inst.stat.md5
tags
:
deploy
# Node play that need to be run after platform updates.
...
...
@@ -102,7 +103,7 @@
shell
:
npm install chdir={{ edxapp_code_dir }}
sudo_user
:
"
{{
edxapp_user
}}"
environment
:
"
{{
edxapp_environment
}}"
when
:
not inst.stat.exists or new.stat.md5 != inst.stat.md5
when
:
chkout.changed and
not inst.stat.exists or new.stat.md5 != inst.stat.md5
tags
:
deploy
...
...
@@ -115,7 +116,7 @@
extra_args="-i {{ edxapp_pypi_local_mirror }}"
sudo_user
:
"
{{
edxapp_user
}}"
environment
:
"
{{
edxapp_environment
}}"
when
:
not inst.stat.exists or new.stat.md5 != inst.stat.md5
when
:
chkout.changed and
not inst.stat.exists or new.stat.md5 != inst.stat.md5
tags
:
deploy
# Install the python modules into {{ edxapp_venv_dir }}
...
...
@@ -128,7 +129,7 @@
chdir={{ edxapp_code_dir }}
environment
:
"
{{
edxapp_environment
}}"
sudo_user
:
"
{{
edxapp_user
}}"
when
:
not inst.stat.exists or new.stat.md5 != inst.stat.md5
when
:
chkout.changed and
not inst.stat.exists or new.stat.md5 != inst.stat.md5
tags
:
deploy
# Install the python post requirements into {{ edxapp_venv_dir }}
...
...
@@ -140,7 +141,7 @@
extra_args="-i {{ edxapp_pypi_local_mirror }}"
sudo_user
:
"
{{
edxapp_user
}}"
environment
:
"
{{
edxapp_environment
}}"
when
:
not inst.stat.exists or new.stat.md5 != inst.stat.md5
when
:
chkout.changed and
not inst.stat.exists or new.stat.md5 != inst.stat.md5
tags
:
deploy
# Install the final python modules into {{ edxapp_venv_dir }}
...
...
@@ -154,7 +155,7 @@
-
"
{{
github_requirements_file
}}"
-
"
{{
local_requirements_file
}}"
sudo_user
:
"
{{
edxapp_user
}}"
when
:
not inst.stat.exists or new.stat.md5 != inst.stat.md5
when
:
chkout.changed and
not inst.stat.exists or new.stat.md5 != inst.stat.md5
tags
:
deploy
...
...
@@ -170,12 +171,13 @@
-
"
{{
sandbox_post_requirements
}}"
when
:
install_sandbox_reqs_into_regular_venv
sudo_user
:
"
{{
edxapp_user
}}"
when
:
not inst.stat.exists or new.stat.md5 != inst.stat.md5
when
:
chkout.changed and
not inst.stat.exists or new.stat.md5 != inst.stat.md5
tags
:
deploy
-
name
:
edxapp | create checksum for installed requirements
shell
:
cp /var/tmp/edxapp.req.new /var/tmp/edxapp.req.installed
sudo_user
:
"
{{
edxapp_user
}}"
when
:
chkout.changed
tags
:
deploy
...
...
playbooks/roles/edxapp/tasks/service_variant_config.yml
View file @
ae0ad293
...
...
@@ -59,7 +59,7 @@
executable=/bin/bash
chdir={{ edxapp_code_dir }}
sudo_user
:
"
{{
edxapp_user
}}"
when
:
celery_worker is not defined
when
:
c
hkout.changed and c
elery_worker is not defined
with_items
:
service_variants_enabled
environment
:
"
{{
edxapp_environment
}}"
tags
:
...
...
@@ -68,13 +68,13 @@
-
name
:
edxapp | syncdb and migrate
shell
:
sudo -u {{ edxapp_user }} SERVICE_VARIANT=lms {{ edxapp_venv_bin}}/django-admin.py syncdb --migrate --noinput --settings=lms.envs.aws --pythonpath={{ edxapp_code_dir }}
when
:
migrate_db is defined and migrate_db|lower == "yes"
when
:
chkout and
migrate_db is defined and migrate_db|lower == "yes"
tags
:
-
deploy
-
name
:
edxapp | db migrate
shell
:
sudo -u {{ edxapp_user }} SERVICE_VARIANT=lms {{ edxapp_venv_bin }}/django-admin.py migrate --noinput --settings=lms.envs.aws --pythonpath={{ edxapp_code_dir }}
when
:
migrate_only is defined and migrate_only|lower == "yes"
when
:
chkout.changed and
migrate_only is defined and migrate_only|lower == "yes"
tags
:
-
deploy
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment