summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorDavey Shafik <me@daveyshafik.com>2012-04-26 07:48:49 -0400
committerDavey Shafik <me@daveyshafik.com>2012-05-28 06:22:24 -0400
commit3966df7fc83093766e5e6862b18b8ef03ef58e09 (patch)
treedb32d6c7268c984d4ef13f90b3f09a1b3efd8e93 /.travis.yml
parentfde8762e9034f006826bec12bc6c0aac6b450055 (diff)
downloadphp-git-3966df7fc83093766e5e6862b18b8ef03ef58e09.tar.gz
Add support for Travis CI
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000000..feff37ecc4
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,11 @@
+language: php
+# We only specify one version so we only get one worker
+php:
+ - 5.4
+# Compile PHP
+before_script:
+ - ./travis/compile.sh
+# Return 1 with failed testso
+env: REPORT_EXIT_STATUS=1
+# Run PHP's make test
+script: make test