Skip to content

Commit b9ef615

Browse files
authored
Merge pull request #232 from RoaringBitmap/addingdrone
Adding drone
2 parents 2ba0533 + a657706 commit b9ef615

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.drone.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
kind: pipeline
2+
name: default
3+
4+
workspace:
5+
base: /go
6+
path: src/github.com/RoaringBitmap/roaring
7+
8+
steps:
9+
- name: test
10+
image: golang
11+
commands:
12+
- go get -t
13+
- go test
14+
- go test -race -run TestConcurrent*
15+
- go build -tags appengine
16+
- go test -tags appengine
17+
- GOARCH=386 go build
18+
- GOARCH=386 go test
19+
- GOARCH=arm go build
20+
- GOARCH=arm64 go build

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,14 @@ branches:
2323
script:
2424
- 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
2525
- go test -race -run TestConcurrent*
26+
- go build -tags appengine
27+
- go test -tags appengine
2628
- GOARCH=arm64 go build
2729
- GOARCH=386 go build
2830
- GOARCH=386 go test
2931
- GOARCH=arm go build
32+
- GOARCH=arm64 go build
33+
3034
matrix:
3135
allow_failures:
3236
- go: tip

0 commit comments

Comments
 (0)