Skip to content
This repository was archived by the owner on Dec 23, 2023. It is now read-only.

Commit e56f667

Browse files
authored
Merge pull request #1 from sebright/enable-travis
Adds .travis.yml.
2 parents 19617c8 + 7f94a2d commit e56f667

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.travis.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
sudo: required
2+
dist: trusty
3+
language: java
4+
5+
jdk:
6+
- oraclejdk8
7+
8+
before_install:
9+
- echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8" | sudo tee /etc/apt/sources.list.d/bazel.list
10+
- curl https://storage.googleapis.com/bazel-apt/doc/apt-key.pub.gpg | sudo apt-key add -
11+
- sudo apt-get update
12+
13+
install:
14+
- sudo apt-get install bazel
15+
16+
script:
17+
- bazel test ...

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
Census - A stats collection framework
22
======================================================
3+
[![Build Status](https://travis-ci.org/google/census-java.svg?branch=master)](https://travis-ci.org/google/census-java)
34

45
Census provides a framework to define and collect stats against metrics and to
56
break those stats down across user-defined dimensions.

0 commit comments

Comments
 (0)