-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some initial work to get travis-ci running. This includes updates to the make the tests more reliable, and have fewer dependancies on on the initial container setup. Travis-ci is desirable for it's multiple-platforms. * Added travis-ci * Updated runtime_test to download osqueryd as part of a test setup step. * moved downloadOsqueryInBinDir to test setup and removed race conditions This does mean that we have duplicate CI systems
- Loading branch information
1 parent
7f395a2
commit 0c18bb8
Showing
4 changed files
with
130 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Use containers, not VMs | ||
sudo: false | ||
|
||
notifications: | ||
email: false | ||
|
||
language: go | ||
|
||
go: | ||
- 1.11.x | ||
|
||
env: | ||
global: | ||
- SKIP_TEST_MDM=true | ||
matrix: | ||
- TRAVISTARGET=build | ||
- TRAVISTARGET=test | ||
- TRAVISTARGET=package-builder | ||
|
||
os: | ||
- linux | ||
- osx | ||
|
||
install: | ||
- make deps | ||
|
||
script: | ||
- make $TRAVISTARGET | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters