Skip to content
Snippets Groups Projects
.travis.yml 1.69 KiB
Newer Older
Ryan Smith's avatar
Ryan Smith committed
language: php
  directories:
    - $HOME/.composer/cache
  - 7.0
  - 5.6
  global:
    - MOODLE_BRANCH=MOODLE_32_STABLE
  matrix:
    - DB=pgsql
#   - DB=mysqli
  - echo "Travis tag $TRAVIS_TAG"
  - echo "Travis branch $TRAVIS_BRANCH"
  - composer install --no-interaction
  - phpenv config-rm xdebug.ini
  - nvm install 8.9
  - cd ../..
  - composer selfupdate
  - composer create-project -n --no-dev --prefer-dist moodlerooms/moodle-plugin-ci ci ^2
  - export PATH="$(cd ci/bin; pwd):$(cd ci/vendor/bin; pwd):$PATH"
  - moodle-plugin-ci install
# - moodle-plugin-ci phplint
# - moodle-plugin-ci phpcpd
# - moodle-plugin-ci phpmd
# - moodle-plugin-ci codechecker
  - moodle-plugin-ci validate
  - moodle-plugin-ci savepoints
# - moodle-plugin-ci mustache
# - moodle-plugin-ci grunt
  - pwd
  - cd $TRAVIS_BUILD_DIR && ./vendor/bin/phpunit && cd ../..
# - moodle-plugin-ci behat

  # run codechecker without the vendor/ directory
  - rm -rf "$(find -type d -name xapi)/vendor"
  - moodle-plugin-ci codechecker
  - cd $TRAVIS_BUILD_DIR
  - if [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_PHP_VERSION" == "7.1" ]; then
    npm install;
    export BUILD_LEADER_ID=1;
    npm run semantic-release;
  - sh ./scripts/generateVersionFile.sh
  - sh ./scripts/generateZipFile.sh
  - provider: releases
    api_key: $GH_TOKEN
    file: xapi.zip
    skip_cleanup: true
    on:
      tags: true
      php: 7.1
  - provider: script
    script: npm install && npm run moodle-plugin-release
    skip_cleanup: true