Skip to content

Commit

Permalink
Initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
jbeemster committed Aug 5, 2016
0 parents commit 491b6d9
Show file tree
Hide file tree
Showing 113 changed files with 214,922 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Compiled Object files, Static and Dynamic libs (Shared Objects)
*.o
*.a
*.so

# Folders
_obj
_test

# Architecture specific extensions/prefixes
*.[568vq]
[568vq].out

*.cgo1.go
*.cgo2.c
_cgo_defun.c
_cgo_gotypes.go
_cgo_export.*

_testmain.go

*.exe
*.test
*.prof

# This project's binaries
snowplow-tracking-cli
*.db
*.db-shm
*.db-wal

# Vagrant
.vagrant/
27 changes: 27 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
language: go
sudo: required
go:
- 1.3
- 1.4
- 1.5
- 1.6
before_install:
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
script:
- go test -v -covermode=count -coverprofile=coverage.out
- $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci
before_deploy:
- sudo apt-get update
- sudo apt-get install -y autopoint binutils-mingw-w64-i686 binutils-mingw-w64-x86-64 gcc-mingw-w64-i686 gcc-mingw-w64-x86-64
deploy:
skip_cleanup: true
provider: script
script: ./.travis/deploy.sh $TRAVIS_TAG
on:
condition: '"${TRAVIS_GO_VERSION}" == "1.6"'
tags: true
env:
global:
- secure: Q2gwDDWiQzrpjdg1pnQnES5qlUu58+jhhyKgR0Puz0uB5d/Mi//s8bn9q8G/vTzmqzlaBYYFqWjX6M1smMOOzbcrirDMpLzCY+c1uNFLiBHb2e/jg/H+Xg1stirKaX2zvccJu223Yj4qvcZZ8SgQ2DLP2ZpXRuKMPZarIiQzf1C/HkNbnelrPOkhqfW/11tVvkL1/WEVHa6NE6iQsUyKZDatU9w9pW2hiPXzvQT++H1OUImr8EDm040Y8IaZSaWFGBv9fOfcsrkoSD2uw6OswOOLbGzNikWL2C4Bz0/cs49rwPjNeyMU1TGTg6w5tcahIV7//s2Mwf59sg+by4z/u6j4LYWGlO0ER+CE8m5N/Ky/sc3yIdRginedrFdy12OuEpcT9tBD6YS9o42XnLHbQnvxlP8DFk9fnH2+Z63s3bL6E90qCXczn7ltrFntaqtKVdaK2NtsxTzj7DhIf0Ofy0hOWrrgm+bXwoPxGU0dr69mRZ3xNpCS5WE2HSWPrC1hZPAirK7NkIFqviHv8DcN432SKZTiaT+rBhxKxkIi9nak+YppOGTK4xp3qNRInZpGEIB3f4MMneAnKH5DlfkI/gayil1xrzLqZ9v9aSZB1bqocdoYE/YnDmdOS/yuei8cU4FJgXKS5lejdpl4Qtc27ku4Q4/tI1AD/3Nb5uTCvLs=
- secure: B7RC23EM2F5RPShbR7e37k6ZACPfUHUlkj8yIjGKsVJ2vTHvZ0N6YyVtjbK49Wv3Y37FSdlJt9cddLltlKFEzJxac5O7tU+Gyg3SuH0PpfJ4pCvU1nH6MWR+arcTB43sXB6WbTzTv+X/UE9BSQMDLR5wKH2Byx3Fq+ilnGB0i/123Bw3d9fBmmZOrel9xK9gJY0y542IIbyIOTTFBMb+iZGNY1dmtUw+p+t6TlaHQ7jX/RBL9SsdVG0fNhd1Xw7mPTbs3XPs1o+NFj8a5X0NneyFbB8nEo/skxUFrjxmj1z4PvIfwpuT+54o5UqKJSzpYBzfjNQYoItGX83DlaYY45mu3yClffdnp7lIZbS6e0QE5X3KpvwFLSMnoTC+nKanTzEBsEKPbD9j1ZoFkvzGwATRUoYC5kCf64OfU10yc7eSDt4PSGiM01PqzSSPYWuTCKC1fJBvSTnUk9hV3F8IoOzFsbDiSPHsZGW0q6ONfR47Q0HsYQr+vgE5Bbq7eYJkQ9i5CGdA1PaKP4L9WsVvOml62jkcYhwQv+Rr34TvI/fejvXBB5JadHjrOpB+FnjudKuJVDMiSKYL8NCtbQaHNnjHkXdV0GeEjmAl8em/6vhb1UorC8KR3heXoHX8gV5unDFPc/fHqLIPZBnrBBu3m0o8s0tYsAvxI/Oxi6jZQnE=
14 changes: 14 additions & 0 deletions .travis/deploy.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash

tag_version=$1

cd $TRAVIS_BUILD_DIR
pwd

project_version=`cat VERSION`
if [ "${project_version}" == "${tag_version}" ]; then
./ci.bash "${project_version}"
else
echo "Tag version '${tag_version}' doesn't match version in project ('${project_version}'). Aborting!"
exit 1
fi
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Version 0.1.0 (2016-08-03)
--------------------------
Initial release
44 changes: 44 additions & 0 deletions Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions Godeps/Readme

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Godeps/_workspace/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions Godeps/_workspace/src/github.com/davecgh/go-spew/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

151 changes: 151 additions & 0 deletions Godeps/_workspace/src/github.com/davecgh/go-spew/spew/bypass.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 491b6d9

Please sign in to comment.