From 3099159c0d28b558e9e3acbad0824788b83dbf59 Mon Sep 17 00:00:00 2001 From: Tom Paoletti Date: Tue, 4 Mar 2014 22:02:44 -0800 Subject: [PATCH 1/3] Basic configuration for travis-ci --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..b56a94e --- /dev/null +++ b/.travis.yml @@ -0,0 +1,5 @@ +language: go + +go: + - tip + From d8920cd6dfa079cc6f1a3f38149b36b2d94f4e6d Mon Sep 17 00:00:00 2001 From: Tom Paoletti Date: Tue, 4 Mar 2014 23:00:51 -0800 Subject: [PATCH 2/3] Install GTK3 development files --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index b56a94e..7286df5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,3 +3,6 @@ language: go go: - tip +before_install: + - sudo apt-get update -qq + - sudo apt-get install -qq libgtk-3-dev From e3db9b7a9b435ad90cdf1b7a92da17a740ea8296 Mon Sep 17 00:00:00 2001 From: Tom P Date: Tue, 4 Mar 2014 23:21:59 -0800 Subject: [PATCH 3/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 61d5210..1615aea 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![Build Status](https://travis-ci.org/tompao/ui.png?branch=travis-ci)](https://travis-ci.org/tompao/ui) + # Native UI library for Go ### THIS PACKAGE IS UNDER ACTIVE DEVELOPMENT. Feel free to start using it, but mind: it's far from feature-complete, it's still in need of testing and crash-fixing, and the API can (and will) change. If you can help, please do! Run `./test` to build a test binary `test/test` which runs a (mostly) feature-complete UI test. Run `./d32 ./test` to build a 32-bit version (you will need a cgo-enabled 32-bit go environment, and I have only tested this on Mac OS X).