test #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tutor Open edX CI | |
on: [push] | |
jobs: | |
setup-tutor: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y python3 python3-pip curl | |
pip3 install tutor | |
- name: Configure Tutor plugin | |
run: | | |
tutor config save | |
echo 'Patching Caddyfile...' | |
echo " | |
{$default_site_port} { | |
import proxy 'lms:8000' | |
} | |
" > $(tutor config printroot)/env/apps/caddy/Caddyfile | |
echo 'Patching CMS production settings...' | |
echo "ALLOWED_HOSTS = ['*']" > $(tutor config printroot)/env/apps/openedx/settings/cms/production.py | |
echo 'Patching LMS production settings...' | |
echo "ALLOWED_HOSTS = ['*']" > $(tutor config printroot)/env/apps/openedx/settings/lms/production.py | |
- name: Launch Tutor | |
run: | | |
tutor config save | |
tutor local launch -I | |
- name: Install eox-core and eox-tenant in LMS | |
run: | | |
# Install eox-core and eox-tenant in the LMS container | |
tutor local run lms pip install eox-core | |
tutor local run lms pip install eox-tenant | |
shell: bash | |
- name: Check Open edX LMS heartbeat | |
run: | | |
until curl -sSf http://local.edly.io/heartbeat; do | |
echo "Waiting for LMS to be ready..." | |
sleep 5 | |
done | |
echo "LMS is up and running!" | |
- name: Check Open edX eox-core eox-info | |
run: | | |
until curl -sSf http://local.edly.io/eox-core/eox-info; do | |
echo "Waiting for EOX CORE to be ready..." | |
sleep 5 | |
done | |
echo "EOX CORE is up and running!" | |
- name: Check eox-tenant eox-info | |
run: | | |
until curl -sSf http://local.edly.io/eox-tenant/eox-info; do | |
echo "Waiting for EOX TENANT to be ready..." | |
sleep 5 | |
done | |
echo "EOX TENANT is up and running!" |