forked from moodlehq/moodleapp
-
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
1 parent
98ef26b
commit 0fe2170
Showing
2 changed files
with
66 additions
and
62 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,66 @@ | ||
name: Update Moodle WS Structure | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
moodle_branch: | ||
description: 'Moodle branch' | ||
required: true | ||
default: 'master' | ||
schedule: | ||
- cron: '0 4 * * *' | ||
push: | ||
|
||
jobs: | ||
structure: | ||
runs-on: ubuntu-latest | ||
services: | ||
exttests: | ||
image: moodlehq/moodle-exttests | ||
ports: | ||
- 8080:80 | ||
redis: | ||
image: redis | ||
ports: | ||
- 6379:6379 | ||
|
||
strategy: | ||
matrix: | ||
moodle_branch: ['master'] # , 'MOODLE_401_STABLE', 'MOODLE_402_STABLE', 'MOODLE_403_STABLE' | ||
env: | ||
dbtype: pgsql | ||
php: 8.2 | ||
MOODLE_BRANCH: ${{ github.event.inputs.moodle_branch || 'master' }} | ||
MOODLE_REPOSITORY: 'https://github.com/moodle/moodle' | ||
steps: | ||
- name: Checking out code from ${{ env.GITHUB_REF_SLUG }} | ||
uses: actions/checkout@v3 | ||
|
||
- name: Checking out Moodle ${{ env.MOODLE_BRANCH }} | ||
run: | | ||
git clone --branch $MOODLE_BRANCH --depth 1 $MOODLE_REPOSITORY $GITHUB_WORKSPACE/moodle | ||
- name: Setting up DB ${{ env.dbtype }} | ||
uses: m4nu56/postgresql-action@v1 | ||
with: | ||
postgresql version: 13 | ||
postgresql db: test | ||
postgresql user: test | ||
postgresql password: test | ||
- name: Setting up PHP ${{ env.php }} | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ env.php }} | ||
ini-values: max_input_vars=5000 | ||
coverage: none | ||
|
||
- name: Setting up Moodle | ||
env: | ||
dbtype: ${{ env.dbtype }} | ||
run: | | ||
cd $GITHUB_WORKSPACE/moodle | ||
echo "pathtophp=$(which php)" >> $GITHUB_ENV # Inject installed pathtophp to env. The template config needs it. | ||
cp .github/workflows/config-template.php config.php | ||
mkdir ../moodledata | ||
# sudo locale-gen en_AU.UTF-8 | ||
php admin/cli/install_database.php --agree-license --adminpass=1234 [email protected] --fullname=Structure --shortname=structure --summary=Structure [email protected] |
This file was deleted.
Oops, something went wrong.