Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test dev lib improvements #41

Closed
wants to merge 29 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
53adc6b
Update dev-lib to feature/pre-commit-improvements
westonruter Jan 16, 2016
278fe6f
Update dev-lib
westonruter Jan 16, 2016
5e32b3e
Add temp dev-lib
westonruter Jan 16, 2016
2e97364
Add JSCS problem
westonruter Jan 16, 2016
c82d443
Add JSHint bug
westonruter Jan 16, 2016
012b787
Add YUI fail
westonruter Jan 16, 2016
10e983b
Add PHP syntax error
westonruter Jan 16, 2016
71fc40f
Add PHPCS issue
westonruter Jan 16, 2016
5cc2e80
Add execute bit
westonruter Jan 16, 2016
cea4d68
Update dev-lib
westonruter Jan 16, 2016
de48d5c
Source travis script and after_script
westonruter Jan 16, 2016
bfb9cc1
Revert "Add execute bit"
westonruter Jan 16, 2016
7064246
Update dev-lib
westonruter Jan 16, 2016
f7d9a37
Dump env vars
westonruter Jan 16, 2016
77acff8
Update dev-lib
westonruter Jan 16, 2016
185cb39
Debug
westonruter Jan 16, 2016
225d3c4
Update dev-lib
westonruter Jan 16, 2016
0964463
Update dev-lib
westonruter Jan 16, 2016
28cf30f
Revert "Add YUI fail"
westonruter Jan 16, 2016
9980fa4
Revert "Add JSHint bug"
westonruter Jan 16, 2016
c14ab8d
Update submodule
westonruter Jan 16, 2016
9b93ead
Revert "Add JSCS problem"
westonruter Jan 16, 2016
6dc4714
Add phpunit test failure
westonruter Jan 16, 2016
ccd5bcd
Revert "Add PHP syntax error"
westonruter Jan 16, 2016
54da4cc
Revert "Add PHPCS issue"
westonruter Jan 16, 2016
5752e02
Update submodule
westonruter Jan 16, 2016
bdafd7f
Update dev-lib
westonruter Jan 16, 2016
76c7b23
Update deb
westonruter Jan 16, 2016
8876e04
Revert "Add phpunit test failure"
westonruter Jan 16, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .dev-lib
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash

#if [ ! -e /vagrant ]; then
# DB_NAME=test_devlib
# DB_USER=external
# DB_PASS=external
# DB_HOST=192.168.50.4
# WP_VERSION=latest
#
# WP_CORE_DIR=/tmp/wordpress_dev_lib_test
#fi
#YUI_COMPRESSOR_CHECK=1
DISALLOW_EXECUTE_BIT=1
CHECK_SCOPE=patches
2 changes: 2 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[submodule "dev-lib"]
path = dev-lib
url = https://github.com/xwp/wp-dev-lib.git
branch = feature/pre-commit-improvements

12 changes: 7 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ language:
- node_js

php:
- 5.4
- 5.5

node_js:
Expand All @@ -18,13 +17,16 @@ branches:
only:
- master

before_script:
install:
- set -x
- export DEV_LIB_PATH=dev-lib
- if [ ! -e "$DEV_LIB_PATH" ] && [ -L .travis.yml ]; then export DEV_LIB_PATH=$( dirname $( readlink .travis.yml ) ); fi
- source $DEV_LIB_PATH/travis.before_script.sh
- cd dev-lib; git pull origin feature/pre-commit-improvements; cd -
- source $DEV_LIB_PATH/travis.install.sh
- dump_environment_variables

script:
- $DEV_LIB_PATH/travis.script.sh
- source $DEV_LIB_PATH/travis.script.sh

after_script:
- $DEV_LIB_PATH/travis.after_script.sh
- source $DEV_LIB_PATH/travis.after_script.sh