Changeset 10771
- Timestamp:
- 05/15/2016 03:13:29 AM (10 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
.travis.yml (modified) (3 diffs)
-
Gruntfile.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/.travis.yml
r10703 r10771 18 18 # x.y mirrors the latest from the x.y branch 19 19 env: 20 - WP_VERSION=master 21 - WP_VERSION=4.5 22 - WP_VERSION=4.4 23 - WP_VERSION=4.3 24 - WP_VERSION=4.2 25 - WP_VERSION=4.1 20 - WP_VERSION=master BP_TRAVISCI=travis:phpunit 21 - WP_VERSION=4.5 BP_TRAVISCI=travis:phpunit 22 - WP_VERSION=4.4 BP_TRAVISCI=travis:phpunit 23 - WP_VERSION=4.3 BP_TRAVISCI=travis:phpunit 24 - WP_VERSION=4.2 BP_TRAVISCI=travis:phpunit 25 - WP_VERSION=4.1 BP_TRAVISCI=travis:phpunit 26 26 27 27 matrix: … … 29 29 include: 30 30 - php: nightly 31 env: WP_VERSION=master 31 env: WP_VERSION=master BP_TRAVISCI=travis:phpunit 32 - php: 7.0 33 env: WP_VERSION=master BP_TRAVISCI=travis:grunt 32 34 exclude: 33 35 - php: 7.0 34 env: WP_VERSION=4.2 36 env: WP_VERSION=4.2 BP_TRAVISCI=travis:phpunit 35 37 - php: 7.0 36 env: WP_VERSION=4.1 38 env: WP_VERSION=4.1 BP_TRAVISCI=travis:phpunit 37 39 allow_failures: 38 40 - php: nightly … … 72 74 73 75 # Run tests 74 script: grunt travis76 script: grunt $BP_TRAVISCI 75 77 76 78 notifications: -
trunk/Gruntfile.js
r10705 r10771 267 267 grunt.registerTask( 'jstest', 'Runs all JavaScript tasks.', [ 'jsvalidate:src', 'jshint' ] ); 268 268 269 // Travis CI Task 270 grunt.registerTask( 'travis', ['jsvalidate:src', 'jshint', 'checktextdomain', 'test'] ); 269 // Travis CI Tasks. 270 grunt.registerTask( 'travis:grunt', 'Runs Grunt build task.', [ 'build' ]); 271 grunt.registerTask( 'travis:phpunit', ['jsvalidate:src', 'jshint', 'checktextdomain', 'test'] ); 271 272 272 273 // Patch task.
Note: See TracChangeset
for help on using the changeset viewer.