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.
22 # Although we want to run these jobs and see failures as quickly as possible, we also want to get the slowest job to
23 # start first so that the total run time is not too high.
25 # We only run MySQL on PHP 5.6, so run that first.
26 # CI Tests should be second-highest in priority as these only take <= 60 seconds to run under normal circumstances.
27 # Postgres is significantly is pretty reasonable in its run-time.
29 # Run unit tests on MySQL
30 - DB=mysqli PHPUNIT=true INSTALL=false CITEST=false
32 # Run CI Tests without running PHPUnit.
33 - DB=none PHPUNIT=false INSTALL=false CITEST=true
35 # Run unit tests on Postgres
36 - DB=pgsql PHPUNIT=true INSTALL=false CITEST=false
38 # Perform an upgrade test too.
39 - DB=pgsql PHPUNIT=false INSTALL=true CITEST=false UPGRADE=true
43 # This will fail the build if a single job fails (except those in allow_failures).
44 # It will not stop the jobs from running.
48 # MySQL - it's just too slow.
49 # Exclude it on all versions except for 7.0
50 # - env: DB=mysqli PHPUNIT=true INSTALL=false CITEST=false
53 # - env: DB=mysqli PHPUNIT=true INSTALL=false CITEST=false
56 - env: DB=mysqli PHPUNIT=true INSTALL=false CITEST=false
59 # Moodle 2.7 is not compatible with PHP 7 for the upgrade test.
60 - env: DB=pgsql PHPUNIT=false INSTALL=true CITEST=false UPGRADE=true
65 - $HOME/.composer/cache
68 # Disable xdebug. We aren't generating code coverage, and it has a huge impact upon test performance.
69 - rm /home/travis/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
71 # Set the encrypted GITHUB_TOKEN if it's available to raise the API limit.
72 - if [ -n "$GITHUB_APITOKEN" ]; then composer config github-oauth.github.com $GITHUB_APITOKEN; fi
74 # Install composer dependencies.
75 # We need --no-interaction in case we hit API limits for composer. This causes it to fall back to a standard clone.
76 # Typically it should be able to use the Composer cache if any other job has already completed before we started here.
77 - travis_retry composer install --prefer-dist --no-interaction
81 if [ "$INSTALL" = 'true' -o "$PHPUNIT" = 'true' ];
83 # Copy generic configuration in place.
84 cp config-dist.php config.php ;
86 # Create the moodledata directory.
87 mkdir -p "$HOME"/roots/base
89 # The database name and password.
91 -e "s%= 'moodle'%= 'travis_ci_test'%" \
92 -e "s%= 'password'%= ''%" \
95 # The wwwroot and dataroot.
97 -e "s%http://example.com/moodle%http://localhost%" \
98 -e "s%/home/example/moodledata%/home/travis/roots/base%" \
101 if [ "$DB" = 'pgsql' ];
103 # Postgres-specific setup.
105 -e "s%= 'username'%= 'postgres'%" \
108 psql -c 'CREATE DATABASE travis_ci_test;' -U postgres;
111 if [ "$DB" = 'mysqli' ];
113 # MySQL-specific setup.
115 -e "s%= 'pgsql'%= 'mysqli'%" \
116 -e "s%= 'username'%= 'travis'%" \
119 mysql -u root -e 'SET GLOBAL innodb_file_format=barracuda;' ;
120 mysql -u root -e 'SET GLOBAL innodb_file_per_table=ON;' ;
121 mysql -e 'CREATE DATABASE travis_ci_test DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_bin;' ;
124 if [ "$PHPUNIT" = 'true' ];
126 # Create a directory for the phpunit dataroot.
127 mkdir -p "$HOME"/roots/phpunit
129 # The phpunit dataroot and prefix..
131 -e "/require_once/i \\\$CFG->phpunit_dataroot = '\/home\/travis\/roots\/phpunit';" \
132 -e "/require_once/i \\\$CFG->phpunit_prefix = 'p_';" \
135 # Initialise PHPUnit for Moodle.
136 php admin/tool/phpunit/cli/init.php
141 ########################################################################
143 ########################################################################
145 if [ "$PHPUNIT" = 'true' ];
150 ########################################################################
152 ########################################################################
154 if [ "$CITEST" = 'true' ];
156 # Note - this is deliberately placed in the script section as we
157 # should not add any code until after phpunit has run.
159 # The following repositories are required.
160 # The local_ci repository does the actual checking.
161 git clone https://github.com/moodlehq/moodle-local_ci.git local/ci
163 # We need the official upstream for comparison
164 git remote add upstream https://github.com/moodle/moodle.git;
166 git fetch upstream master;
167 export GIT_PREVIOUS_COMMIT="`git merge-base FETCH_HEAD $TRAVIS_COMMIT`";
168 export GIT_COMMIT="$TRAVIS_COMMIT";
169 export UPSTREAM_FETCH_HEAD=`git rev-parse FETCH_HEAD`
171 # Variables required by our linter.
172 export gitcmd=`which git`;
173 export gitdir="$TRAVIS_BUILD_DIR";
174 export phpcmd=`which php`;
177 # Actually run the CI Tests - do this outside of the main test to make output clearer.
179 if [ "$CITEST" = 'true' ];
181 bash local/ci/php_lint/php_lint.sh;
184 ########################################################################
186 ########################################################################
188 if [ "$UPGRADE" = 'true' ];
190 # We need the official upstream.
191 git remote add upstream https://github.com/moodle/moodle.git;
193 # Checkout 27 STABLE branch.
194 git fetch upstream MOODLE_27_STABLE;
195 git checkout MOODLE_27_STABLE;
197 # Perform the upgrade
198 php admin/cli/install_database.php --agree-license --adminpass=Password --adminemail=admin@example.com --fullname="Upgrade test" --shortname=Upgrade;
200 # Return to the previous commit
203 # Perform the upgrade
204 php admin/cli/upgrade.php --non-interactive --allow-unstable ;
206 # The local_ci repository can be used to check upgrade savepoints.
207 git clone https://github.com/moodlehq/moodle-local_ci.git local/ci ;
209 cp local/ci/check_upgrade_savepoints/check_upgrade_savepoints.php ./check_upgrade_savepoints.php
210 result=`php check_upgrade_savepoints.php`;
211 # Check if there are problems
212 count=`echo "$result" | grep -P "ERROR|WARN" | wc -l` ;