Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for 310 branch #81

Merged
merged 1 commit into from
Aug 28, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 26 additions & 18 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,45 +17,53 @@ cache:
jobs:
include:
- php: 7.4
env: MOODLE_BRANCH=master DB=pgsql
env: MOODLE_BRANCH=master DB=pgsql
- php: 7.4
env: MOODLE_BRANCH=master DB=mysqli
env: MOODLE_BRANCH=master DB=mysqli
- php: 7.4
env: MOODLE_BRANCH=MOODLE_39_STABLE DB=mysqli
env: MOODLE_BRANCH=MOODLE_310_STABLE DB=pgsql
- php: 7.4
env: MOODLE_BRANCH=MOODLE_38_STABLE DB=pgsql
env: MOODLE_BRANCH=MOODLE_310_STABLE DB=mysqli
- php: 7.4
env: MOODLE_BRANCH=MOODLE_39_STABLE DB=mysqli
- php: 7.4
env: MOODLE_BRANCH=MOODLE_38_STABLE DB=pgsql

- php: 7.3
env: MOODLE_BRANCH=MOODLE_37_STABLE DB=mysqli
env: MOODLE_BRANCH=MOODLE_37_STABLE DB=mysqli
- php: 7.3
env: MOODLE_BRANCH=MOODLE_36_STABLE DB=pgsql
env: MOODLE_BRANCH=MOODLE_36_STABLE DB=pgsql

- php: 7.2
env: MOODLE_BRANCH=master DB=pgsql
env: MOODLE_BRANCH=master DB=pgsql
- php: 7.2
env: MOODLE_BRANCH=master DB=mysqli
- php: 7.2
env: MOODLE_BRANCH=MOODLE_310_STABLE DB=pgsql
- php: 7.2
env: MOODLE_BRANCH=master DB=mysqli
env: MOODLE_BRANCH=MOODLE_310_STABLE DB=mysqli
- php: 7.2
env: MOODLE_BRANCH=MOODLE_39_STABLE DB=mysqli
env: MOODLE_BRANCH=MOODLE_39_STABLE DB=mysqli
- php: 7.2
env: MOODLE_BRANCH=MOODLE_35_STABLE DB=mysqli
env: MOODLE_BRANCH=MOODLE_35_STABLE DB=mysqli
- php: 7.2
env: MOODLE_BRANCH=MOODLE_34_STABLE DB=pgsql
env: MOODLE_BRANCH=MOODLE_34_STABLE DB=pgsql

- php: 7.1
env: MOODLE_BRANCH=MOODLE_38_STABLE DB=pgsql
env: MOODLE_BRANCH=MOODLE_38_STABLE DB=pgsql
- php: 7.1
env: MOODLE_BRANCH=MOODLE_37_STABLE DB=mysqli
env: MOODLE_BRANCH=MOODLE_37_STABLE DB=mysqli
- php: 7.1
env: MOODLE_BRANCH=MOODLE_33_STABLE DB=mysqli
env: MOODLE_BRANCH=MOODLE_33_STABLE DB=mysqli
- php: 7.1
env: MOODLE_BRANCH=MOODLE_32_STABLE DB=pgsql NODE_VERSION=8.9
env: MOODLE_BRANCH=MOODLE_32_STABLE DB=pgsql NODE_VERSION=8.9

- php: 7.0
env: MOODLE_BRANCH=MOODLE_36_STABLE DB=pgsql
env: MOODLE_BRANCH=MOODLE_36_STABLE DB=pgsql
- php: 7.0
env: MOODLE_BRANCH=MOODLE_35_STABLE DB=mysqli
env: MOODLE_BRANCH=MOODLE_35_STABLE DB=mysqli
- php: 7.0
env: MOODLE_BRANCH=MOODLE_34_STABLE DB=pgsql
env: MOODLE_BRANCH=MOODLE_34_STABLE DB=pgsql

before_install:
- phpenv config-rm xdebug.ini
Expand Down