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.
7 # We currently disable Travis notifications entirely until https://github.com/travis-ci/travis-ci/issues/4976
15 # We only run the highest and lowest supported versions to reduce the load on travis-ci.org.
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.
26 # We only run MySQL on PHP 7.0, 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.
36 # Run unit tests on Postgres
37 - DB=pgsql TASK=PHPUNIT
39 # Perform an upgrade test too.
40 - DB=pgsql TASK=UPGRADE
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.
49 # Run grunt/npm install on lowest supported npm version
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.)
54 env: DB=none TASK=GRUNT NVM_VERSION='node'
57 # MySQL - it's just too slow.
58 # Exclude it on all versions except for 7.0
60 - env: DB=mysqli TASK=PHPUNIT
63 # Moodle 2.7 is not compatible with PHP 7 for the upgrade test.
64 - env: DB=pgsql TASK=UPGRADE
69 - $HOME/.composer/cache
73 # Disable xdebug. We aren't generating code coverage, and it has a huge impact upon test performance.
74 - rm /home/travis/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
77 if [ "$TASK" = 'PHPUNIT' ];
79 if [ -n "$GITHUB_APITOKEN" ]; then
80 composer config github-oauth.github.com $GITHUB_APITOKEN;
81 echo 'auth.json' >> .git/info/exclude
85 echo 'extension="redis.so"' > /tmp/redis.ini
86 phpenv config-add /tmp/redis.ini
88 # Install composer dependencies.
89 # We need --no-interaction in case we hit API limits for composer. This causes it to fall back to a standard clone.
90 # Typically it should be able to use the Composer cache if any other job has already completed before we started here.
91 travis_retry composer install --prefer-dist --no-interaction;
95 if [ "$TASK" = 'GRUNT' ];
97 nvm install $NVM_VERSION ;
98 nvm use $NVM_VERSION ;
103 if [ "$TASK" = 'PHPUNIT' -o "$TASK" = 'UPGRADE' ];
105 # Copy generic configuration in place.
106 cp config-dist.php config.php ;
108 # Create the moodledata directory.
109 mkdir -p "$HOME"/roots/base
111 # The database name and password.
113 -e "s%= 'moodle'%= 'travis_ci_test'%" \
114 -e "s%= 'password'%= ''%" \
117 # The wwwroot and dataroot.
119 -e "s%http://example.com/moodle%http://localhost%" \
120 -e "s%/home/example/moodledata%/home/travis/roots/base%" \
123 if [ "$DB" = 'pgsql' ];
125 # Postgres-specific setup.
127 -e "s%= 'username'%= 'postgres'%" \
130 psql -c 'CREATE DATABASE travis_ci_test;' -U postgres;
133 if [ "$DB" = 'mysqli' ];
135 # MySQL-specific setup.
137 -e "s%= 'pgsql'%= 'mysqli'%" \
138 -e "s%= 'username'%= 'travis'%" \
141 mysql -u root -e 'SET GLOBAL innodb_file_format=barracuda;' ;
142 mysql -u root -e 'SET GLOBAL innodb_file_per_table=ON;' ;
143 mysql -e 'CREATE DATABASE travis_ci_test DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_bin;' ;
148 if [ "$TASK" = 'PHPUNIT' ];
150 # Create a directory for the phpunit dataroot.
151 mkdir -p "$HOME"/roots/phpunit
153 # The phpunit dataroot and prefix..
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');" \
160 # Initialise PHPUnit for Moodle.
161 php admin/tool/phpunit/cli/init.php
165 if [ "$TASK" = 'GRUNT' ];
167 npm install --no-spin;
168 npm install --no-spin -g grunt ;
171 ########################################################################
173 ########################################################################
175 if [ "$TASK" = 'CITEST' ];
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`;
198 ########################################################################
200 ########################################################################
202 if [ "$TASK" = 'UPGRADE' ];
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
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 ;
226 if [ "$TASK" = 'PHPUNIT' ];
232 if [ "$TASK" = 'CITEST' ];
234 bash local/ci/php_lint/php_lint.sh;
238 if [ "$TASK" = '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.
244 git diff --cached --exit-code ;
247 ########################################################################
249 ########################################################################
251 if [ "$TASK" = 'UPGRADE' ];
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` ;