sudo: true language: php env: global: - RUN_PHPCS="no" matrix: fast_finish: true include: - php: 5.5 dist: trusty - php: 5.6 env: RUN_PHPCS="yes" services: - xvfb - php: 7.0 sudo: true addons: firefox: 'latest-esr' services: - xvfb - php: 7.1 services: - xvfb - php: 7.2 services: - xvfb - php: 7.3 services: - xvfb before_script: # Forcing localhost in hosts file - sudo sed -i '1s/^/127.0.0.1 localhost\n/' /etc/hosts - sudo apt-get update -qq - sudo apt-get install -y --force-yes apache2 libapache2-mod-fastcgi > /dev/null - sudo mkdir $(pwd)/.run - chmod a+x tests/travis-php-fpm.sh - sudo ./tests/travis-php-fpm.sh $USER $(phpenv version-name) - sudo a2enmod rewrite actions fastcgi alias - echo "cgi.fix_pathinfo = 1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini - ~/.phpenv/versions/$(phpenv version-name)/sbin/php-fpm - sudo cp -f tests/travis-ci-apache.conf /etc/apache2/sites-available/default - sudo sed -e "s?%TRAVIS_BUILD_DIR%?$(pwd)?g" --in-place /etc/apache2/sites-available/default - sudo sed -e "s?%PHPVERSION%?${TRAVIS_PHP_VERSION:0:1}?g" --in-place /etc/apache2/sites-available/default - git submodule update --init --recursive - sudo service apache2 restart # Xvfb on trusty environments (PHP 5.5 and below) - if [[ $dist == "trusty" ]]; then export DISPLAY=:99.0; fi - if [[ $dist == "trusty" ]]; then sh -e /etc/init.d/xvfb start; fi - if [[ $dist == "trusty" ]]; then sleep 3 ; fi # give xvfb some time to start # Fluxbox - sudo apt-get install fluxbox -y --force-yes - fluxbox & - sleep 3 # give fluxbox some time to start # Composer - composer install script: # Build - mv jorobo.dist.ini jorobo.ini - vendor/bin/robo build # System tests (Codeception) - mv tests/acceptance.suite.dist.yml tests/acceptance.suite.yml - vendor/bin/robo run:tests --use-htaccess # Run phpcs on PHP 5.6 against weblinks source - if [[ $RUN_PHPCS == "yes" ]]; then vendor/bin/phpcs --report=full --extensions=php -p --standard=tests/joomla/build/phpcs/Joomla ./src; fi