-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Tutor Setup with Plugin Verification | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
setup-tutor: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python 3.11 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.11' | ||
|
||
- 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 LMS_EXTRA_PIP_REQUIREMENTS="eox-core\neox-tenant" | ||
- name: Rebuild the LMS image to include the extra requirements | ||
run: | | ||
tutor images build openedx | ||
- name: Start Tutor | ||
run: | | ||
tutor local launch -I | ||
- name: Wait for services to be up | ||
run: | | ||
sleep 60 # Adjust the sleep time as necessary for services to be fully ready | ||
- name: Check LMS logs | ||
run: | | ||
tutor local logs lms --tail=100 # Retrieve the last 100 lines of LMS logs | ||
- name: Check LMS heartbeat endpoint | ||
run: | | ||
curl -f http://localhost:8000/heartbeat |