Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
magajh committed Sep 13, 2024
1 parent ac50061 commit e9e1b6d
Showing 1 changed file with 50 additions and 57 deletions.
107 changes: 50 additions & 57 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,71 +1,64 @@
name: Tutor Setup with Plugin Verification
name: Tutor Open edX CI

on: [push]
on:
push:
branches:
- '*' # This will trigger the workflow on push to any branch

jobs:
setup-tutor:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
- name: Checkout code
uses: actions/checkout@v2

# - name: Set up Python 3.11
# uses: actions/setup-python@v2
# with:
# python-version: '3.11'

- name: Check open ports
run: |
sudo netstat -tuln # Or use ss if netstat is not available
- name: Check for web proxy services
run: |
ps aux | grep -E 'nginx|apache|caddy'
- name: Check for proxy environment variables
run: |
env | grep -i proxy
- name: Install Tutor
run: |
python3 -m pip install --upgrade pip
python3 -m pip install tutor
# - name: Add extra LMS requirements
# run: |
# # Create a custom Tutor configuration to add extra pip requirements for the LMS
# tutor config save --set OPENEDX_EXTRA_PIP_REQUIREMENTS="eox-core\neox-tenant"

# - name: Rebuild the LMS image to include the extra requirements
# run: |
# tutor images build openedx

# - name: Configure LMS to be externally accessible
# run: |
# tutor config save --set LMS_HOST=0.0.0.0

- name: Start Tutor
- name: Install dependencies
run: |
tutor local launch -I
sudo apt-get update
sudo apt-get install -y python3 python3-pip curl
pip3 install tutor
- name: Install additional LMS requirements
- name: Configure Tutor plugin
run: |
tutor local run lms pip install eox-core eox-tenant
tutor local restart lms
# - name: Wait for services to be up
# run: |
# sleep 600 # Adjust the sleep time as necessary for services to be fully ready

- name: Get LMS_HOST value
id: lms_host
run: |
echo "LMS_HOST=$(tutor config printvalue LMS_HOST)" >> $GITHUB_ENV
- name: Check LMS logs
tutor plugins create patches <<EOF
name: patches
patches:
caddyfile: |
{$default_site_port} {
@favicon_matcher {
path_regexp ^/favicon.ico$
}
rewrite @favicon_matcher /theming/asset/images/favicon.ico
{{ patch("caddyfile-mfe-by-path") }}
# Limit profile image upload size
request_body /api/profile_images/*/*/upload {
max_size 1MB
}
request_body {
max_size 4MB
}
import proxy "lms:8000"
}
openedx-cms-production-settings: |
ALLOWED_HOSTS = ["*"]
openedx-lms-production-settings: |
ALLOWED_HOSTS = ["*"]
EOF
tutor plugins enable patches
- name: Launch Tutor
run: |
tutor local logs lms --tail=200 # Retrieve the last 100 lines of LMS logs
tutor config save
tutor local launch
- name: Check LMS heartbeat endpoint
- name: Check Open edX LMS heartbeat
run: |
curl -f http://$LMS_HOST:80/heartbeat
until curl -sSf http://localhost:8000/heartbeat; do
echo "Waiting for LMS to be ready..."
sleep 5
done
echo "LMS is up and running!"

0 comments on commit e9e1b6d

Please sign in to comment.