]> git.saurik.com Git - wxWidgets.git/commitdiff
Add a configuration file for Travis CI system.
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 25 Jul 2013 21:55:17 +0000 (21:55 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 25 Jul 2013 21:55:17 +0000 (21:55 +0000)
Try to use Travis in addition to buildbot to see if it can be useful for us.

Closes #15355.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74598 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

.travis.yml [new file with mode: 0644]

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..a90d711
--- /dev/null
@@ -0,0 +1,21 @@
+# This is the control file for Travis continuous integration system.
+#
+# It is used automatically for the repositories on Github if it's found in the
+# root directory of the project.
+language: cpp
+
+compiler: gcc
+
+branches:
+    only:
+        - master
+
+notifications:
+    email:
+        recipients:
+            - vadim@wxwidgets.org
+        on_success: change
+        on_failure: change
+
+script:
+    - ./configure && make && make samples && make -C tests && (cd test && ./test -t) && sudo make install