Skip to content
Snippets Groups Projects
.travis.yml 4.01 KiB
Newer Older
  • Learn to ignore specific revisions
  • sudo: required
    dist: trusty
    
    Thomas Müller's avatar
    Thomas Müller committed
    language: php
    php:
    
      - 7.1
    
    Xaver Maierhofer's avatar
    Xaver Maierhofer committed
      - 7.3
    
    addons:
      apt:
        packages:
        - mysql-server-5.6
        - mysql-client-core-5.6
        - mysql-client-5.6
    
        - libxml2-utils
    
      - CORE_BRANCH=master
    
      - TEST_SUITE=TEST-PHP
    
      - DB=mysql TEST_SUITE=LINT-PHP
      - DB=mysql TEST_SUITE=TEST-PHP
    
        - php: 7.3
          env: "DB=mysql TEST_SUITE=TEST-JS"
        - php: 7.3
          env: "DB=mysql TEST_SUITE=PACKAGE"
    
          env: "DB=mysql PHP_COVERAGE=TRUE"
        - php: 7.3
    
          env: "DB=sqlite CORE_BRANCH=stable16"
    
        - php: 7.3
    
          env: "DB=pgsql CORE_BRANCH=v16.0.0RC1"
    
      - master
      - "/^stable\\d+(\\.\\d+)?$/"
    
    Thomas Müller's avatar
    Thomas Müller committed
      - /^v\d++(\.\d+)?+(\.\d+)?+(\.\d+)?$/
    
      - "$HOME/.composer/cache/files"
      - "$HOME/.npm"
    
    Christoph Wurst's avatar
    Christoph Wurst committed
    
    
      # Install Krankerl
      - wget https://github.com/ChristophWurst/krankerl/releases/download/v0.10.1/krankerl_0.10.1_amd64.deb
      - sudo dpkg -i krankerl_0.10.1_amd64.deb
    
    
      # Set up DB
      - if [[ "$DB" == 'pgsql' ]]; then createuser -U travis -s oc_autotest; fi
      - if [[ "$DB" == 'mysql' ]]; then mysql -u root -e 'create database oc_autotest;'; fi
      - if [[ "$DB" == 'mysql' ]]; then mysql -u root -e "CREATE USER 'oc_autotest'@'localhost' IDENTIFIED BY '';"; fi
      - if [[ "$DB" == 'mysql' ]]; then mysql -u root -e "GRANT ALL ON oc_autotest.* TO 'oc_autotest'@'localhost';"; fi
    
      - composer self-update
    
      - sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then make install-composer-deps-dev; fi"
      - sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then make start-imap-docker; fi"
      - sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then make start-smtp-docker; fi"
    
    Christoph Wurst's avatar
    Christoph Wurst committed
      - git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b $CORE_BRANCH core
    
      - mv mail core/apps/
    
    Christoph Wurst's avatar
    Christoph Wurst committed
    
    
    before_script:
    
      - sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then php -f core/occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database $DB --database-pass=''; fi"
    
      - sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then php -f core/occ app:enable mail; fi"
    
      # Enable app twice to check occ errors of registered commands
    
      - sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then php -f core/occ app:enable mail; fi"
    
      - cd core/apps/mail
    
      - sh -c "if [ '$TEST_SUITE' = 'TEST-JS' ]; then npm install -g npm@latest; fi"
      - sh -c "if [ '$TEST_SUITE' = 'TEST-JS' ]; then make dev-setup; fi"
    
    
      # Prepare IMAP test docker
    
      - sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then make add-imap-account; fi"
    
    
      # XDebug is only needed if we report coverage -> speeds up other builds
      - if [[ "$PHP_COVERAGE" = "FALSE" ]]; then phpenv config-rm xdebug.ini; fi
    
    
      # Print running docker images, just to verify they did not crash
    
      - sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then docker ps; fi"
    
      # Check info.xml schema validity
      - wget https://apps.nextcloud.com/schema/apps/info.xsd
      - xmllint appinfo/info.xml --schema info.xsd --noout
      - rm info.xsd
    
    
      # Check PHP syntax errors
    
      - sh -c "if [ '$TEST_SUITE' = 'LINT-PHP' ]; then composer run lint; fi"
    
      # Run server's app code checker
    
      - sh -c "if [ '$TEST_SUITE' = 'LINT-PHP' ]; then php ../../occ app:check-code mail; fi"
    
      - sh -c "if [ '$TEST_SUITE' = 'TEST-JS' ]; then npm test; fi"
    
      # - sh -c "if [ '$TEST_JS' = 'TRUE' ]; then cat ./coverage/*/lcov.info | ./node_modules/coveralls/bin/coveralls.js; fi"
    
    sahalsaad's avatar
    sahalsaad committed
      # Run JS lint
    
      - sh -c "if [ '$TEST_SUITE' = 'TEST-JS' ]; then npm run lint; fi"
    
      # Run PHP tests
    
      - sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then composer run test; fi"
    
      - if [[ "$PHP_COVERAGE" = "TRUE" ]]; then wget https://scrutinizer-ci.com/ocular.phar;
        fi
      - if [[ "$PHP_COVERAGE" = "TRUE" ]]; then php ocular.phar code-coverage:upload --format=php-clover
    
        tests/clover.xml; fi
    
      - if [[ "$TEST_SUITE" = "PACKAGE" ]]; then make appstore; fi