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 - mysql-client-core-5.6
30 # Although we want to run these jobs and see failures as quickly as possible, we also want to get the slowest job to
31 # start first so that the total run time is not too high.
33 # We only run MySQL on PHP 7.1, so run that first.
34 # CI Tests should be second-highest in priority as these only take <= 60 seconds to run under normal circumstances.
35 # Postgres is significantly is pretty reasonable in its run-time.
37 # Run unit tests on MySQL
38 - DB=mysqli TASK=PHPUNIT
40 # Run CI Tests without running PHPUnit.
43 # Run unit tests on Postgres
44 - DB=pgsql TASK=PHPUNIT
46 # Perform an upgrade test too.
47 - DB=pgsql TASK=UPGRADE
51 # This will fail the build if a single job fails (except those in allow_failures).
52 # It will not stop the jobs from running.
56 # Run grunt/npm install on highest version ('node' is an alias for the latest node.js version.)
58 env: DB=none TASK=GRUNT NVM_VERSION='lts/carbon'
61 # MySQL - it's just too slow.
62 # Exclude it on all versions except for 7.1
64 - env: DB=mysqli TASK=PHPUNIT
67 # Moodle 2.7 is not compatible with PHP 7 for the upgrade test.
68 - env: DB=pgsql TASK=UPGRADE
73 - $HOME/.composer/cache
78 if [ "$DB" = 'mysqli' ];
80 sudo mkdir /mnt/ramdisk
81 sudo mount -t tmpfs -o size=1024m tmpfs /mnt/ramdisk
83 sudo mv /var/lib/mysql /mnt/ramdisk
84 sudo ln -s /mnt/ramdisk/mysql /var/lib/mysql
88 if [ "$DB" = 'pgsql' ];
90 sudo mkdir /mnt/ramdisk
91 sudo mount -t tmpfs -o size=1024m tmpfs /mnt/ramdisk
92 sudo service postgresql stop
93 sudo mv /var/lib/postgresql /mnt/ramdisk
94 sudo ln -s /mnt/ramdisk/postgresql /var/lib/postgresql
95 sudo service postgresql start 9.6
98 if [ "$TASK" = 'PHPUNIT' ];
100 if [ -n "$GITHUB_APITOKEN" ]; then
101 composer config github-oauth.github.com $GITHUB_APITOKEN;
102 echo 'auth.json' >> .git/info/exclude
106 echo 'extension="redis.so"' > /tmp/redis.ini
107 phpenv config-add /tmp/redis.ini
109 # Install composer dependencies.
110 # We need --no-interaction in case we hit API limits for composer. This causes it to fall back to a standard clone.
111 # Typically it should be able to use the Composer cache if any other job has already completed before we started here.
112 travis_retry composer install --prefer-dist --no-interaction;
116 if [ "$TASK" = 'GRUNT' ];
118 nvm install $NVM_VERSION ;
119 nvm use $NVM_VERSION ;
123 - phpenv config-rm xdebug.ini
125 if [ "$TASK" = 'PHPUNIT' -o "$TASK" = 'UPGRADE' ];
127 # Copy generic configuration in place.
128 cp config-dist.php config.php ;
130 # Create the moodledata directory.
131 mkdir -p "$HOME"/roots/base
133 # The database name and password.
135 -e "s%= 'moodle'%= 'travis_ci_test'%" \
136 -e "s%= 'password'%= ''%" \
139 # The wwwroot and dataroot.
141 -e "s%http://example.com/moodle%https://localhost%" \
142 -e "s%/home/example/moodledata%/home/travis/roots/base%" \
145 if [ "$DB" = 'pgsql' ];
147 # Postgres-specific setup.
149 -e "s%= 'username'%= 'postgres'%" \
152 psql -c 'CREATE DATABASE travis_ci_test;' -U postgres;
155 if [ "$DB" = 'mysqli' ];
157 # MySQL-specific setup.
159 -e "s%= 'pgsql'%= 'mysqli'%" \
160 -e "s%= 'username'%= 'travis'%" \
161 -e "s%=> 'utf8mb4_unicode_ci'%=> 'utf8mb4_bin'%" \
164 mysql -u root -e 'SET GLOBAL innodb_file_format=barracuda;' ;
165 mysql -u root -e 'SET GLOBAL innodb_file_per_table=ON;' ;
166 mysql -u root -e 'SET GLOBAL innodb_large_prefix=ON;' ;
167 mysql -e 'CREATE DATABASE travis_ci_test DEFAULT CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_bin;' ;
172 if [ "$TASK" = 'PHPUNIT' ];
174 # Create a directory for the phpunit dataroot.
175 mkdir -p "$HOME"/roots/phpunit
177 # The phpunit dataroot and prefix..
179 -e "/require_once/i \\\$CFG->phpunit_dataroot = '\/home\/travis\/roots\/phpunit';" \
180 -e "/require_once/i \\\$CFG->phpunit_prefix = 'p_';" \
181 -e "/require_once/i \\define('TEST_SESSION_REDIS_HOST', '127.0.0.1');" \
184 # Initialise PHPUnit for Moodle.
185 php admin/tool/phpunit/cli/init.php
189 if [ "$TASK" = 'GRUNT' ];
191 npm install --no-spin;
192 npm install --no-spin -g grunt ;
195 ########################################################################
197 ########################################################################
199 if [ "$TASK" = 'CITEST' ];
201 # Note - this is deliberately placed in the script section as we
202 # should not add any code until after phpunit has run.
204 # The following repositories are required.
205 # The local_ci repository does the actual checking.
206 git clone https://github.com/moodlehq/moodle-local_ci.git local/ci
208 # We need the official upstream for comparison
209 git remote add upstream https://github.com/moodle/moodle.git;
211 git fetch upstream MOODLE_33_STABLE;
212 export GIT_PREVIOUS_COMMIT="`git merge-base FETCH_HEAD $TRAVIS_COMMIT`";
213 export GIT_COMMIT="$TRAVIS_COMMIT";
214 export UPSTREAM_FETCH_HEAD=`git rev-parse FETCH_HEAD`
216 # Variables required by our linter.
217 export gitcmd=`which git`;
218 export gitdir="$TRAVIS_BUILD_DIR";
219 export phpcmd=`which php`;
222 ########################################################################
224 ########################################################################
226 if [ "$TASK" = 'UPGRADE' ];
228 # We need the official upstream.
229 git remote add upstream https://github.com/moodle/moodle.git;
231 # Checkout 27 STABLE branch.
232 git fetch upstream MOODLE_27_STABLE;
233 git checkout MOODLE_27_STABLE;
235 # Perform the upgrade
236 php admin/cli/install_database.php --agree-license --adminpass=Password --adminemail=admin@example.com --fullname="Upgrade test" --shortname=Upgrade;
238 # Return to the previous commit
241 # Perform the upgrade
242 php admin/cli/upgrade.php --non-interactive --allow-unstable ;
244 # The local_ci repository can be used to check upgrade savepoints.
245 git clone https://github.com/moodlehq/moodle-local_ci.git local/ci ;
250 if [ "$TASK" = 'PHPUNIT' ];
252 vendor/bin/phpunit --fail-on-risky --disallow-test-output --verbose;
256 if [ "$TASK" = 'CITEST' ];
258 bash local/ci/php_lint/php_lint.sh;
262 if [ "$TASK" = 'GRUNT' ];
265 # Add all files to the git index and then run diff --cached to see all changes.
266 # This ensures that we get the status of all files, including new files.
268 git diff --cached --exit-code ;
271 ########################################################################
273 ########################################################################
275 if [ "$TASK" = 'UPGRADE' ];
277 cp local/ci/check_upgrade_savepoints/check_upgrade_savepoints.php ./check_upgrade_savepoints.php
278 result=`php check_upgrade_savepoints.php`;
279 # Check if there are problems
280 count=`echo "$result" | grep -P "ERROR|WARN" | wc -l` ;