From 1ecbf86a8c5d1bc8b4b732a3f08e10e6acd7de21 Mon Sep 17 00:00:00 2001 From: Evan Winslow Date: Mon, 13 Feb 2012 20:32:52 -0800 Subject: Adds trivial .travis.yml config so we can get started building. --- .travis.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .travis.yml (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..b4f980d73 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,6 @@ +language: php +phps: + - 5.2 + - 5.3 + +script: phpunit --help \ No newline at end of file -- cgit v1.2.3 From d2a272a3bbbf504fee7ff0269b27e1eea52071f6 Mon Sep 17 00:00:00 2001 From: Evan Winslow Date: Wed, 22 Feb 2012 19:41:02 -0800 Subject: The travis-ci build should only run against master now. --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index b4f980d73..5cc8f375a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,4 +3,8 @@ phps: - 5.2 - 5.3 -script: phpunit --help \ No newline at end of file +script: phpunit --help + +branches: + only: + - master \ No newline at end of file -- cgit v1.2.3