Skip to content

Commit

Permalink
Add 'winlogbeat/' from commit 'e6d58ce3532ae92f0d0b836c65ddc0ffdf2db85e'
Browse files Browse the repository at this point in the history
git-subtree-dir: winlogbeat
git-subtree-mainline: 175f556
git-subtree-split: e6d58ce
  • Loading branch information
Tudor Golubenco committed Dec 2, 2015
2 parents 175f556 + e6d58ce commit 37a5ded
Show file tree
Hide file tree
Showing 209 changed files with 40,167 additions and 0 deletions.
17 changes: 17 additions & 0 deletions winlogbeat/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# See: http://editorconfig.org
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

# Tab indentation (no size specified)
[Makefile]
indent_style = tab

# Matches the exact files either package.json or .travis.yml
[*.yml]
indent_style = space
indent_size = 2
1 change: 1 addition & 0 deletions winlogbeat/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CHANGELOG.md merge=union
46 changes: 46 additions & 0 deletions winlogbeat/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Compiled Object files, Static and Dynamic libs (Shared Objects)
winlogbeat
*.o
*.a
*.so
*.swp
*.swo
*.pyc

# Folders
_obj
_test
coverage

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

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

_testmain.go

*.exe
*.test
*.prof
*.out
*.log
*.bak
*.winlogbeat.yaml
etc/*.dev.yml

cover/
/tests/system/env/
/tests/system/run/
/tests/system/last_run
profile.cov
.idea
.DS_Store
/docs/html_docs
.vagrant

build/
26 changes: 26 additions & 0 deletions winlogbeat/.travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
sudo: false

language: go
go:
- 1.5.1

addons:
apt:
packages:
- python-virtualenv

before_install:
# This is needed so the package path uses elastic/winlogbeat as its path.
- mkdir -p $HOME/gopath/src/github.com/elastic/winlogbeat
- rsync -az ${TRAVIS_BUILD_DIR}/ $HOME/gopath/src/github.com/elastic/winlogbeat/
- export TRAVIS_BUILD_DIR=$HOME/gopath/src/github.com/elastic/winlogbeat
- cd $HOME/gopath/src/github.com/elastic/winlogbeat

install:
- make deps

script:
- make check
- make winlogbeat
- make testsuite
- make crosscompile
77 changes: 77 additions & 0 deletions winlogbeat/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 winlogbeat/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 winlogbeat/Godeps/_workspace/.gitignore

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.

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

Loading

0 comments on commit 37a5ded

Please sign in to comment.