MDL-64032 enrol_manual: Make consistent the UI for setting enrolment
[moodle.git] / .travis.yml
blob56a20e8f9b56386e41d872dadbb1339f1345e8f7
1 # PLEASE NOTE: Travis is not currently utilised by the Moodle core integration
2 # process (which uses our internal CI system) this file is here for the benefit
3 # of community developers git clones - see MDL-51458.
5 sudo: required
7 # We currently disable Travis notifications entirely until https://github.com/travis-ci/travis-ci/issues/4976
8 # is fixed.
9 notifications:
10   email: false
12 language: php
14 dist: trusty
16 php:
17     # We only run the highest and lowest supported versions to reduce the load on travis-ci.org.
18     - 7.3
19     - 7.1.30 # Make this sticky because current default version (7.1.11) has a bug with redis-extension output (MDL-66062)
21 addons:
22   postgresql: "9.6"
23   packages:
24     - mysql-server-5.6
25     - mysql-client-core-5.6
26     - mysql-client-5.6
28 env:
29     # Although we want to run these jobs and see failures as quickly as possible, we also want to get the slowest job to
30     # start first so that the total run time is not too high.
31     #
32     # We only run MySQL on PHP 7.2, so run that first.
33     # CI Tests should be second-highest in priority as these only take <= 60 seconds to run under normal circumstances.
34     # Postgres is significantly is pretty reasonable in its run-time.
36     # Run CI Tests without running PHPUnit.
37     - DB=none     TASK=CITEST
39     # Run unit tests on Postgres
40     - DB=pgsql    TASK=PHPUNIT
42     # Perform an upgrade test too.
43     - DB=pgsql    TASK=UPGRADE
45 matrix:
46     # Enable fast finish.
47     # This will fail the build if a single job fails (except those in allow_failures).
48     # It will not stop the jobs from running.
49     fast_finish: true
51     include:
52           # Run mysql only on 7.3 - it's just too slow
53         - php: 7.3
54           env: DB=mysqli   TASK=PHPUNIT
55           # Run grunt/npm install on highest version ('node' is an alias for the latest node.js version.)
56         - php: 7.2
57           env: DB=none     TASK=GRUNT   NVM_VERSION='lts/carbon'
59 cache:
60     directories:
61       - $HOME/.composer/cache
62       - $HOME/.npm
64 before_install:
65     # Avoid IPv6 default binding as service (causes redis not to start).
66     sudo service redis-server start --bind 127.0.0.1
68 install:
69     - >
70         if [ "$DB" = 'mysqli' ];
71         then
72             sudo mkdir /mnt/ramdisk
73             sudo mount -t tmpfs -o size=1024m tmpfs /mnt/ramdisk
74             sudo stop mysql
75             sudo mv /var/lib/mysql /mnt/ramdisk
76             sudo ln -s /mnt/ramdisk/mysql /var/lib/mysql
77             sudo start mysql
78         fi
79     - >
80         if [ "$DB" = 'pgsql' ];
81         then
82             sudo mkdir /mnt/ramdisk
83             sudo mount -t tmpfs -o size=1024m tmpfs /mnt/ramdisk
84             sudo service postgresql stop
85             sudo mv /var/lib/postgresql /mnt/ramdisk
86             sudo ln -s /mnt/ramdisk/postgresql /var/lib/postgresql
87             sudo service postgresql start 9.6
88         fi
89     - >
90         if [ "$TASK" = 'PHPUNIT' ];
91         then
92             if [ -n "$GITHUB_APITOKEN" ]; then
93                 composer config github-oauth.github.com $GITHUB_APITOKEN;
94                 echo 'auth.json' >> .git/info/exclude
95             fi
97             echo 'extension="redis.so"' > /tmp/redis.ini
98             phpenv config-add /tmp/redis.ini
100             # Install composer dependencies.
101             # We need --no-interaction in case we hit API limits for composer. This causes it to fall back to a standard clone.
102             # Typically it should be able to use the Composer cache if any other job has already completed before we started here.
103             travis_retry composer install --prefer-dist --no-interaction;
104         fi
106     - >
107         if [ "$TASK" = 'GRUNT' ];
108         then
109             nvm install $NVM_VERSION ;
110             nvm use $NVM_VERSION ;
111         fi
113 before_script:
114     - phpenv config-rm xdebug.ini
115     - >
116       if [ "$TASK" = 'PHPUNIT' -o "$TASK" = 'UPGRADE' ];
117       then
118         # Copy generic configuration in place.
119         cp config-dist.php config.php ;
121         # Create the moodledata directory.
122         mkdir -p "$HOME"/roots/base
124         # The database name and password.
125         sed -i \
126           -e "s%= 'moodle'%= 'travis_ci_test'%" \
127           -e "s%= 'password'%= ''%" \
128           config.php ;
130         # The wwwroot and dataroot.
131         sed -i \
132           -e "s%http://example.com/moodle%https://localhost%" \
133           -e "s%/home/example/moodledata%/home/travis/roots/base%" \
134           config.php ;
136         if [ "$DB" = 'pgsql' ];
137         then
138           # Postgres-specific setup.
139           sed -i \
140             -e "s%= 'username'%= 'postgres'%" \
141             config.php ;
143           psql -c 'CREATE DATABASE travis_ci_test;' -U postgres;
144         fi
146         if [ "$DB" = 'mysqli' ];
147         then
148           # MySQL-specific setup.
149           sed -i \
150             -e "s%= 'pgsql'%= 'mysqli'%" \
151             -e "s%= 'username'%= 'travis'%" \
152             -e "s%=> 'utf8mb4_unicode_ci'%=> 'utf8mb4_bin'%" \
153             config.php;
155           mysql -u root -e 'SET GLOBAL innodb_file_format=barracuda;' ;
156           mysql -u root -e 'SET GLOBAL innodb_file_per_table=ON;' ;
157           mysql -u root -e 'SET GLOBAL innodb_large_prefix=ON;' ;
158           mysql -e 'CREATE DATABASE travis_ci_test DEFAULT CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_bin;' ;
159         fi
160       fi
162     - >
163       if [ "$TASK" = 'PHPUNIT' ];
164       then
165         # Create a directory for the phpunit dataroot.
166         mkdir -p "$HOME"/roots/phpunit
168         # The phpunit dataroot and prefix..
169         sed -i \
170           -e "/require_once/i \\\$CFG->phpunit_dataroot = '\/home\/travis\/roots\/phpunit';" \
171           -e "/require_once/i \\\$CFG->phpunit_prefix = 'p_';" \
172           config.php ;
173         # Redis cache store tests
174         sed -i \
175           -e "/require_once/i \\define('TEST_CACHESTORE_REDIS_TESTSERVERS', '127.0.0.1');" \
176           config.php ;
177         # Redis session tests, but not for PHP 7.2 and up. See MDL-60978 for more info.
178         redissession="define('TEST_SESSION_REDIS_HOST', '127.0.0.1');"
179         sed -i \
180           -e "/require_once/i \\${redissession}" \
181           config.php ;
183         # Initialise PHPUnit for Moodle.
184         php admin/tool/phpunit/cli/init.php
185       fi
187     - >
188       if [ "$TASK" = 'GRUNT' ];
189       then
190         npm install --no-spin;
191         npm install --no-spin -g grunt ;
192       fi
194     ########################################################################
195     # CI Tests
196     ########################################################################
197     - >
198       if [ "$TASK" = 'CITEST' ];
199       then
200         # Note - this is deliberately placed in the script section as we
201         # should not add any code until after phpunit has run.
203         # The following repositories are required.
204         # The local_ci repository does the actual checking.
205         git clone https://github.com/moodlehq/moodle-local_ci.git local/ci
207         # We need the official upstream for comparison
208         git remote add upstream https://github.com/moodle/moodle.git;
210         git fetch upstream master;
211         export GIT_PREVIOUS_COMMIT="`git merge-base FETCH_HEAD $TRAVIS_COMMIT`";
212         export GIT_COMMIT="$TRAVIS_COMMIT";
213         export UPSTREAM_FETCH_HEAD=`git rev-parse FETCH_HEAD`
215         # Variables required by our linter.
216         export gitcmd=`which git`;
217         export gitdir="$TRAVIS_BUILD_DIR";
218         export phpcmd=`which php`;
219       fi
221     ########################################################################
222     # Upgrade test
223     ########################################################################
224     - >
225       if [ "$TASK" = 'UPGRADE' ];
226       then
227         # We need the official upstream.
228         git remote add upstream https://github.com/moodle/moodle.git;
230         # Checkout 30 STABLE branch (the first version compatible with PHP 7.x)
231         git fetch upstream MOODLE_30_STABLE;
232         git checkout MOODLE_30_STABLE;
234         # Perform the upgrade
235         php admin/cli/install_database.php --agree-license --adminpass=Password --adminemail=admin@example.com --fullname="Upgrade test" --shortname=Upgrade;
237         # Return to the previous commit
238         git checkout -;
240         # Perform the upgrade
241         php admin/cli/upgrade.php --non-interactive --allow-unstable ;
243         # The local_ci repository can be used to check upgrade savepoints.
244         git clone https://github.com/moodlehq/moodle-local_ci.git local/ci ;
245       fi
247 script:
248     - >
249       if [ "$TASK" = 'PHPUNIT' ];
250       then
251         vendor/bin/phpunit --fail-on-risky --disallow-test-output --verbose;
252       fi
254     - >
255       if [ "$TASK" = 'CITEST' ];
256       then
257         bash local/ci/php_lint/php_lint.sh;
258       fi
260     - >
261       if [ "$TASK" = 'GRUNT' ];
262       then
263         grunt ;
264         # Add all files to the git index and then run diff --cached to see all changes.
265         # This ensures that we get the status of all files, including new files.
266         # We ignore npm-shrinkwrap.json to make the tasks immune to npm changes.
267         git add . ;
268         git reset -- npm-shrinkwrap.json ;
269         git diff --cached --exit-code ;
270       fi
272     ########################################################################
273     # Upgrade test
274     ########################################################################
275     - >
276       if [ "$TASK" = 'UPGRADE' ];
277       then
278         cp local/ci/check_upgrade_savepoints/check_upgrade_savepoints.php ./check_upgrade_savepoints.php
279         result=`php check_upgrade_savepoints.php`;
280         # Check if there are problems
281         count=`echo "$result" | grep -P "ERROR|WARN" | wc -l` ;
282         if (($count > 0));
283         then
284           echo "$result"
285           exit 1 ;
286         fi
287       fi