From 68ea1e2d9c4ee30b80a44dbb4b8a730da94521b3 Mon Sep 17 00:00:00 2001 From: Dimitris Vardoulakis Date: Mon, 7 Jul 2014 14:49:59 -0700 Subject: [PATCH] Add config file so that we can get continuous integration from Travis, and put a build indicator in the README. Results will show up at https://travis-ci.org/google/closure-compiler ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=70666361 --- .travis.yml | 3 +++ README.md | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000000..31097f2ad00 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,3 @@ +language: java +jdk: + - openjdk7 \ No newline at end of file diff --git a/README.md b/README.md index cdce1af45cb..ddebb2a39ac 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # [Google Closure Compiler](https://developers.google.com/closure/compiler/) +[![Build Status](https://travis-ci.org/google/closure-compiler.svg?branch=master)](https://travis-ci.org/google/closure-compiler) + The [Closure Compiler](https://developers.google.com/closure/compiler/) is a tool for making JavaScript download and run faster. It is a true compiler for JavaScript. Instead of compiling from a source language to machine code, it compiles from JavaScript to better JavaScript. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls. ## Getting Started