File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 1+ os : linux
12dist : trusty
23
34language : php
1011 - $HOME/.composer/cache/files
1112 # Cache directory for more recent Composer versions.
1213 - $HOME/.cache/composer/files
14+ - /home/travis/.rvm/
1315
1416php :
1517 - 5.5
3133# See: https://docs.travis-ci.com/user/conditions-v1
3234stages :
3335 - name : sniff
36+ - name : docs
37+ if : branch IN (master)
3438 - name : quicktest
3539 if : type = push AND branch NOT IN (master, develop)
3640 - name : test
6670 # Check the code-style consistency of the xml files.
6771 - diff -B ./PHPCSUtils/ruleset.xml <(xmllint --format "./PHPCSUtils/ruleset.xml")
6872 - diff -B ./PHPCS23Utils/ruleset.xml <(xmllint --format "./PHPCS23Utils/ruleset.xml")
73+ after_success : skip
74+
75+ # ### DOCUMENTATION SITE TESTING STAGE ####
76+ - stage : docs
77+ language : ruby
78+ cache : bundler
79+ rvm :
80+ - 2.5.8
81+ before_install : skip
82+ install :
83+ - cd ./docs
84+ - gem install bundler
85+ - bundle install
86+ before_script : skip
87+ script :
88+ # Test the documentation generation.
89+ - bundle exec jekyll build
90+ after_success : skip
6991
7092 # ### QUICK TEST STAGE ####
7193 # This is a much quicker test which only runs the unit tests and linting against the low/high
You can’t perform that action at this time.
0 commit comments