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.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.
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.1
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
74 if [ "$TASK" = 'PHPUNIT' ];
76 if [ -n "$GITHUB_APITOKEN" ]; then
77 composer config github-oauth.github.com $GITHUB_APITOKEN;
78 echo 'auth.json' >> .git/info/exclude
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;
92 if [ "$TASK" = 'GRUNT' ];
94 nvm install $NVM_VERSION ;
95 nvm use $NVM_VERSION ;
99 - phpenv config-rm xdebug.ini
101 if [ "$TASK" = 'PHPUNIT' -o "$TASK" = 'UPGRADE' ];
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.
111 -e "s%= 'moodle'%= 'travis_ci_test'%" \
112 -e "s%= 'password'%= ''%" \
115 # The wwwroot and dataroot.
117 -e "s%http://example.com/moodle%http://localhost%" \
118 -e "s%/home/example/moodledata%/home/travis/roots/base%" \
121 if [ "$DB" = 'pgsql' ];
123 # Postgres-specific setup.
125 -e "s%= 'username'%= 'postgres'%" \
128 psql -c 'CREATE DATABASE travis_ci_test;' -U postgres;
131 if [ "$DB" = 'mysqli' ];
133 # MySQL-specific setup.
135 -e "s%= 'pgsql'%= 'mysqli'%" \
136 -e "s%= 'username'%= 'travis'%" \
139 mysql -u root -e 'SET GLOBAL innodb_file_format=barracuda;' ;
140 mysql -u root -e 'SET GLOBAL innodb_file_per_table=ON;' ;
141 mysql -e 'CREATE DATABASE travis_ci_test DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_bin;' ;
146 if [ "$TASK" = 'PHPUNIT' ];
148 # Create a directory for the phpunit dataroot.
149 mkdir -p "$HOME"/roots/phpunit
151 # The phpunit dataroot and prefix..
153 -e "/require_once/i \\\$CFG->phpunit_dataroot = '\/home\/travis\/roots\/phpunit';" \
154 -e "/require_once/i \\\$CFG->phpunit_prefix = 'p_';" \
155 -e "/require_once/i \\define('TEST_SESSION_REDIS_HOST', '127.0.0.1');" \
158 # Initialise PHPUnit for Moodle.
159 php admin/tool/phpunit/cli/init.php
163 if [ "$TASK" = 'GRUNT' ];
165 npm install --no-spin;
166 npm install --no-spin -g grunt ;
169 ########################################################################
171 ########################################################################
173 if [ "$TASK" = 'CITEST' ];
175 # Note - this is deliberately placed in the script section as we
176 # should not add any code until after phpunit has run.
178 # The following repositories are required.
179 # The local_ci repository does the actual checking.
180 git clone https://github.com/moodlehq/moodle-local_ci.git local/ci
182 # We need the official upstream for comparison
183 git remote add upstream https://github.com/moodle/moodle.git;
185 git fetch upstream MOODLE_32_STABLE;
186 export GIT_PREVIOUS_COMMIT="`git merge-base FETCH_HEAD $TRAVIS_COMMIT`";
187 export GIT_COMMIT="$TRAVIS_COMMIT";
188 export UPSTREAM_FETCH_HEAD=`git rev-parse FETCH_HEAD`
190 # Variables required by our linter.
191 export gitcmd=`which git`;
192 export gitdir="$TRAVIS_BUILD_DIR";
193 export phpcmd=`which php`;
196 ########################################################################
198 ########################################################################
200 if [ "$TASK" = 'UPGRADE' ];
202 # We need the official upstream.
203 git remote add upstream https://github.com/moodle/moodle.git;
205 # Checkout 27 STABLE branch.
206 git fetch upstream MOODLE_27_STABLE;
207 git checkout MOODLE_27_STABLE;
209 # Perform the upgrade
210 php admin/cli/install_database.php --agree-license --adminpass=Password --adminemail=admin@example.com --fullname="Upgrade test" --shortname=Upgrade;
212 # Return to the previous commit
215 # Perform the upgrade
216 php admin/cli/upgrade.php --non-interactive --allow-unstable ;
218 # The local_ci repository can be used to check upgrade savepoints.
219 git clone https://github.com/moodlehq/moodle-local_ci.git local/ci ;
224 if [ "$TASK" = 'PHPUNIT' ];
230 if [ "$TASK" = 'CITEST' ];
232 bash local/ci/php_lint/php_lint.sh;
236 if [ "$TASK" = 'GRUNT' ];
239 # Add all files to the git index and then run diff --cached to see all changes.
240 # This ensures that we get the status of all files, including new files.
242 git diff --cached --exit-code ;
245 ########################################################################
247 ########################################################################
249 if [ "$TASK" = 'UPGRADE' ];
251 cp local/ci/check_upgrade_savepoints/check_upgrade_savepoints.php ./check_upgrade_savepoints.php
252 result=`php check_upgrade_savepoints.php`;
253 # Check if there are problems
254 count=`echo "$result" | grep -P "ERROR|WARN" | wc -l` ;