MDL-57975 javascript: add user_date.js
[moodle.git] / .travis.yml
blob799bd5d9f5014aa91fa239698d603ccf4a5db38f
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: false
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 php:
15     # We only run the highest and lowest supported versions to reduce the load on travis-ci.org.
16     - 7.1
17     - 5.6
19 services:
20     - redis-server
22 env:
23     # Although we want to run these jobs and see failures as quickly as possible, we also want to get the slowest job to
24     # start first so that the total run time is not too high.
25     #
26     # We only run MySQL on PHP 7.1, so run that first.
27     # CI Tests should be second-highest in priority as these only take <= 60 seconds to run under normal circumstances.
28     # Postgres is significantly is pretty reasonable in its run-time.
30     # Run unit tests on MySQL
31     - DB=mysqli   TASK=PHPUNIT
33     # Run CI Tests without running PHPUnit.
34     - DB=none     TASK=CITEST
36     # Run unit tests on Postgres
37     - DB=pgsql    TASK=PHPUNIT
39     # Perform an upgrade test too.
40     - DB=pgsql    TASK=UPGRADE
42 matrix:
43     # Enable fast finish.
44     # This will fail the build if a single job fails (except those in allow_failures).
45     # It will not stop the jobs from running.
46     fast_finish: true
48     include:
49           # Run grunt/npm install on lowest supported npm version
50         - php: 7.1
51           env: DB=none     TASK=GRUNT   NVM_VERSION='4'
52           # Run grunt/npm install on highest version ('node' is an alias for the latest node.js version.)
53         - php: 7.1
54           env: DB=none     TASK=GRUNT   NVM_VERSION='node'
56     exclude:
57         # MySQL - it's just too slow.
58         # Exclude it on all versions except for 7.1
60         - env: DB=mysqli   TASK=PHPUNIT
61           php: 5.6
63         # Moodle 2.7 is not compatible with PHP 7 for the upgrade test.
64         - env: DB=pgsql    TASK=UPGRADE
65           php: 7.1
67 cache:
68     directories:
69       - $HOME/.composer/cache
70       - $HOME/.npm
72 install:
73     - >
74         if [ "$TASK" = 'PHPUNIT' ];
75         then
76             if [ -n "$GITHUB_APITOKEN" ]; then
77                 composer config github-oauth.github.com $GITHUB_APITOKEN;
78                 echo 'auth.json' >> .git/info/exclude
79             fi
81             # Enable Redis.
82             echo 'extension="redis.so"' > /tmp/redis.ini
83             phpenv config-add /tmp/redis.ini
85             # Install composer dependencies.
86             # We need --no-interaction in case we hit API limits for composer. This causes it to fall back to a standard clone.
87             # Typically it should be able to use the Composer cache if any other job has already completed before we started here.
88             travis_retry composer install --prefer-dist --no-interaction;
89         fi
91     - >
92         if [ "$TASK" = 'GRUNT' ];
93         then
94             nvm install $NVM_VERSION ;
95             nvm use $NVM_VERSION ;
96         fi
98 before_script:
99     - phpenv config-rm xdebug.ini
100     - >
101       if [ "$TASK" = 'PHPUNIT' -o "$TASK" = 'UPGRADE' ];
102       then
103         # Copy generic configuration in place.
104         cp config-dist.php config.php ;
106         # Create the moodledata directory.
107         mkdir -p "$HOME"/roots/base
109         # The database name and password.
110         sed -i \
111           -e "s%= 'moodle'%= 'travis_ci_test'%" \
112           -e "s%= 'password'%= ''%" \
113           config.php ;
115         # The wwwroot and dataroot.
116         sed -i \
117           -e "s%http://example.com/moodle%http://localhost%" \
118           -e "s%/home/example/moodledata%/home/travis/roots/base%" \
119           config.php ;
121         if [ "$DB" = 'pgsql' ];
122         then
123           # Postgres-specific setup.
124           sed -i \
125             -e "s%= 'username'%= 'postgres'%" \
126             config.php ;
128           psql -c 'CREATE DATABASE travis_ci_test;' -U postgres;
129         fi
131         if [ "$DB" = 'mysqli' ];
132         then
133           # MySQL-specific setup.
134           sed -i \
135             -e "s%= 'pgsql'%= 'mysqli'%" \
136             -e "s%= 'username'%= 'travis'%" \
137             -e "s%=> 'utf8mb4_unicode_ci'%=> 'utf8mb4_bin'%" \
138             config.php;
140           mysql -u root -e 'SET GLOBAL innodb_file_format=barracuda;' ;
141           mysql -u root -e 'SET GLOBAL innodb_file_per_table=ON;' ;
142           mysql -u root -e 'SET GLOBAL innodb_large_prefix=ON;' ;
143           mysql -e 'CREATE DATABASE travis_ci_test DEFAULT CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_bin;' ;
144         fi
145       fi
147     - >
148       if [ "$TASK" = 'PHPUNIT' ];
149       then
150         # Create a directory for the phpunit dataroot.
151         mkdir -p "$HOME"/roots/phpunit
153         # The phpunit dataroot and prefix..
154         sed -i \
155           -e "/require_once/i \\\$CFG->phpunit_dataroot = '\/home\/travis\/roots\/phpunit';" \
156           -e "/require_once/i \\\$CFG->phpunit_prefix = 'p_';" \
157           -e "/require_once/i \\define('TEST_SESSION_REDIS_HOST', '127.0.0.1');" \
158           config.php ;
160         # Initialise PHPUnit for Moodle.
161         php admin/tool/phpunit/cli/init.php
162       fi
164     - >
165       if [ "$TASK" = 'GRUNT' ];
166       then
167         npm install --no-spin;
168         npm install --no-spin -g grunt ;
169       fi
171     ########################################################################
172     # CI Tests
173     ########################################################################
174     - >
175       if [ "$TASK" = 'CITEST' ];
176       then
177         # Note - this is deliberately placed in the script section as we
178         # should not add any code until after phpunit has run.
180         # The following repositories are required.
181         # The local_ci repository does the actual checking.
182         git clone https://github.com/moodlehq/moodle-local_ci.git local/ci
184         # We need the official upstream for comparison
185         git remote add upstream https://github.com/moodle/moodle.git;
187         git fetch upstream master;
188         export GIT_PREVIOUS_COMMIT="`git merge-base FETCH_HEAD $TRAVIS_COMMIT`";
189         export GIT_COMMIT="$TRAVIS_COMMIT";
190         export UPSTREAM_FETCH_HEAD=`git rev-parse FETCH_HEAD`
192         # Variables required by our linter.
193         export gitcmd=`which git`;
194         export gitdir="$TRAVIS_BUILD_DIR";
195         export phpcmd=`which php`;
196       fi
198     ########################################################################
199     # Upgrade test
200     ########################################################################
201     - >
202       if [ "$TASK" = 'UPGRADE' ];
203       then
204         # We need the official upstream.
205         git remote add upstream https://github.com/moodle/moodle.git;
207         # Checkout 27 STABLE branch.
208         git fetch upstream MOODLE_27_STABLE;
209         git checkout MOODLE_27_STABLE;
211         # Perform the upgrade
212         php admin/cli/install_database.php --agree-license --adminpass=Password --adminemail=admin@example.com --fullname="Upgrade test" --shortname=Upgrade;
214         # Return to the previous commit
215         git checkout -;
217         # Perform the upgrade
218         php admin/cli/upgrade.php --non-interactive --allow-unstable ;
220         # The local_ci repository can be used to check upgrade savepoints.
221         git clone https://github.com/moodlehq/moodle-local_ci.git local/ci ;
222       fi
224 script:
225     - >
226       if [ "$TASK" = 'PHPUNIT' ];
227       then
228         vendor/bin/phpunit;
229       fi
231     - >
232       if [ "$TASK" = 'CITEST' ];
233       then
234         bash local/ci/php_lint/php_lint.sh;
235       fi
237     - >
238       if [ "$TASK" = 'GRUNT' ];
239       then
240         grunt ;
241         # Add all files to the git index and then run diff --cached to see all changes.
242         # This ensures that we get the status of all files, including new files.
243         git add . ;
244         git diff --cached --exit-code ;
245       fi
247     ########################################################################
248     # Upgrade test
249     ########################################################################
250     - >
251       if [ "$TASK" = 'UPGRADE' ];
252       then
253         cp local/ci/check_upgrade_savepoints/check_upgrade_savepoints.php ./check_upgrade_savepoints.php
254         result=`php check_upgrade_savepoints.php`;
255         # Check if there are problems
256         count=`echo "$result" | grep -P "ERROR|WARN" | wc -l` ;
257         if (($count > 0));
258         then
259           echo "$result"
260           exit 1 ;
261         fi
262       fi