From 901c44764facae05ac8ec2cbfc578b42441dd7d3 Mon Sep 17 00:00:00 2001 From: Mark Nelson Date: Thu, 27 May 2021 19:21:41 +0800 Subject: [PATCH] Removed .travis.yml file --- .travis.yml | 54 ----------------------------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index b06f8ea..0000000 --- a/.travis.yml +++ /dev/null @@ -1,54 +0,0 @@ -language: php - -# For javascript behat tests we need sudo. -sudo: true - -cache: - directories: - - $HOME/.composer/cache - - $HOME/.npm - -php: - - 7.2 - - 7.4 - -addons: - firefox: 47.0.1 - postgresql: "9.6" - apt: - packages: - - openjdk-8-jre-headless - -services: - - mysql - - postgresql - -env: - global: - - MOODLE_BRANCH=MOODLE_310_STABLE - - IGNORE_NAMES=mobile_*.mustache # Mobile mustache has specific syntax, ignore their templates - matrix: - - DB=pgsql - - DB=mysqli - -before_install: - - phpenv config-rm xdebug.ini - - cd ../.. - - composer create-project -n --no-dev --prefer-dist moodlehq/moodle-plugin-ci ci ^3 - - export PATH="$(cd ci/bin; pwd):$(cd ci/vendor/bin; pwd):$PATH" - -install: - - moodle-plugin-ci install - -script: - - moodle-plugin-ci phplint - # - moodle-plugin-ci phpcpd # subplugins often have similar code and cause "duplicated code" errors - # - moodle-plugin-ci phpmd # too much noise from this check, maybe, some day... - - moodle-plugin-ci codechecker - - moodle-plugin-ci validate - - moodle-plugin-ci savepoints - - moodle-plugin-ci mustache - - moodle-plugin-ci grunt - # - moodle-plugin-ci phpdoc # Complains about missing PHPDocs when they exist in parent class. - - moodle-plugin-ci phpunit - - moodle-plugin-ci behat