Skip to content

Commit

Permalink
Merge pull request #98 from justusdieckmann/moodle38
Browse files Browse the repository at this point in the history
Test for Moodle 38 Release
  • Loading branch information
justusdieckmann authored Dec 2, 2019
2 parents 5c0e92f + 3737f63 commit f752b45
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
15 changes: 7 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,20 @@ services:
php:
- 7.0
- 7.1
- 7.3

env:
matrix:
- DB=pgsql MOODLE_BRANCH=MOODLE_34_STABLE
- DB=pgsql MOODLE_BRANCH=MOODLE_35_STABLE
- DB=pgsql MOODLE_BRANCH=MOODLE_36_STABLE
- DB=pgsql MOODLE_BRANCH=MOODLE_37_STABLE
- DB=pgsql MOODLE_BRANCH=master
- DB=mysqli MOODLE_BRANCH=MOODLE_34_STABLE
- DB=mysqli MOODLE_BRANCH=MOODLE_35_STABLE
- DB=mysqli MOODLE_BRANCH=MOODLE_36_STABLE
- DB=mysqli MOODLE_BRANCH=MOODLE_37_STABLE
- DB=mysqli MOODLE_BRANCH=master

matrix:
allow_failures:
- env: DB=pgsql MOODLE_BRANCH=master
- env: DB=mysqli MOODLE_BRANCH=master
exclude:
- php: 7.0
env: DB=pgsql MOODLE_BRANCH=MOODLE_37_STABLE
Expand All @@ -47,6 +43,10 @@ matrix:
env: DB=pgsql MOODLE_BRANCH=master
- php: 7.0
env: DB=mysqli MOODLE_BRANCH=master
- php: 7.3
env: DB=pgsql MOODLE_BRANCH=MOODLE_35_STABLE
- php: 7.3
env: DB=mysqli MOODLE_BRANCH=MOODLE_35_STABLE
fast_finish: true

before_install:
Expand All @@ -61,7 +61,7 @@ jobs:
include:
# Prechecks against latest Moodle stable only.
- stage: static
php: 7.1
php: 7.3
env: DB=mysqli MOODLE_BRANCH=MOODLE_37_STABLE
install:
- moodle-plugin-ci install --no-init
Expand All @@ -77,7 +77,7 @@ jobs:
- moodle-plugin-ci grunt
# Smaller build matrix for development builds
- stage: develop
php: 7.1
php: 7.3
env: DB=mysqli MOODLE_BRANCH=MOODLE_37_STABLE
install:
- moodle-plugin-ci install
Expand All @@ -88,7 +88,6 @@ jobs:
# Unit tests and behat tests against full matrix.
install:
- moodle-plugin-ci install
-
script:
- moodle-plugin-ci phpunit --coverage-clover
- moodle-plugin-ci behat
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
defined('MOODLE_INTERNAL') || die;

$plugin->maturity = MATURITY_BETA;
$plugin->version = 2019103100;
$plugin->version = 2019120200;
$plugin->component = 'tool_lifecycle';
$plugin->requires = 2017111300; // Require Moodle 3.4 (or above).
$plugin->release = 'v3.7-r1';
$plugin->release = 'v3.8-r1';

0 comments on commit f752b45

Please sign in to comment.