silverstripe / cwp-recipe-kitchen-sink

The CWP kitchen sink! Includes all optional and suggested modules. Used for internal testing.
BSD 3-Clause "New" or "Revised" License
1 stars 5 forks source link

Update for 2.6 #68

Closed emteknetnz closed 4 years ago

emteknetnz commented 4 years ago

.travis.yml had no required changes

before_script:
  # Configure PHP
  - phpenv rehash
  - phpenv config-rm xdebug.ini || true
  - echo 'memory_limit = 2G' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini

  - composer validate
  # Install dependencies
  - composer install --prefer-source --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile

  # Validate cow schema
  - composer global require silverstripe/cow ^2
  - $HOME/.composer/vendor/bin/cow schema:validate

script:
  - if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit --testsuite "$PHPUNIT_TEST" --exclude-group exclude-from-travis; fi
maxime-rainville commented 4 years ago

Merging now. Test are not done running, but they are resolving to an installable package set, which is the main thing I'm concerned about right now.