 fdf750e4d4
			
		
	
	
	
	
	fdf750e4d4* Update blevesearch v0.8.1 -> v1.0.7 * make vendor Co-authored-by: zeripath <art27@cantab.net>
		
			
				
	
	
		
			37 lines
		
	
	
	
		
			752 B
		
	
	
	
		
			YAML
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			752 B
		
	
	
	
		
			YAML
		
	
	
	
		
			Vendored
		
	
	
	
| language: go
 | |
| sudo: false
 | |
| install:
 | |
| - go get -t github.com/RoaringBitmap/roaring
 | |
| - go get -t golang.org/x/tools/cmd/cover
 | |
| - go get -t github.com/mattn/goveralls
 | |
| - go get -t github.com/mschoch/smat
 | |
| notifications:
 | |
|   email: false
 | |
| go:
 | |
| - "1.7.x"
 | |
| - "1.8.x"
 | |
| - "1.9.x"
 | |
| - "1.10.x"
 | |
| - "1.11.x"
 | |
| - "1.12.x"
 | |
| - "1.13.x"
 | |
| - tip
 | |
| 
 | |
| # whitelist
 | |
| branches:
 | |
|   only:
 | |
|     - master
 | |
| script:
 | |
| - goveralls -v -service travis-ci -ignore arraycontainer_gen.go,bitmapcontainer_gen.go,rle16_gen.go,rle_gen.go,roaringarray_gen.go,rle.go || go test
 | |
| - go test -race -run TestConcurrent*
 | |
| - go build -tags appengine
 | |
| - go test -tags appengine
 | |
| - GOARCH=arm64 go build
 | |
| - GOARCH=386 go build
 | |
| - GOARCH=386 go test
 | |
| - GOARCH=arm go build
 | |
| - GOARCH=arm64 go build
 | |
| 
 | |
| matrix:
 | |
|   allow_failures:
 | |
|   - go: tip
 |