Skip to content
Snippets Groups Projects
.travis.yml 1.62 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
  - 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
  - moodle-plugin-ci phpunit
# - 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
    git fetch --tags;
    npm i semantic-release;
    npm i last-release-git;
    export BUILD_LEADER_ID=1;
    ./node_modules/.bin/semantic-release pre && ./node_modules/.bin/semantic-release post;
  - sh ./scripts/generateVersionFile.sh
  - sh ./scripts/generateZipFile.sh

deploy:
  provider: releases
  api_key: $GH_TOKEN
  file: xapi.zip
  skip_cleanup: true
  on:
    tags: true