Newer
Older
directories:
- $HOME/.composer/cache
global:
- MOODLE_BRANCH=MOODLE_32_STABLE
matrix:
- DB=pgsql
# - DB=mysqli
- echo $TRAVIS_PHP_VERSION
- echo "Travis tag $TRAVIS_TAG"
- echo "Travis branch $TRAVIS_BRANCH"
- composer install --no-interaction
- phpenv config-rm xdebug.ini
- 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
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_PHP_VERSION" == "7.1" ]; then
fi
before_deploy:
- 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
on:
tags: true
php: 7.1