You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
370 B
21 lines
370 B
5 years ago
|
kind: pipeline
|
||
|
name: default
|
||
|
|
||
|
workspace:
|
||
|
base: /go
|
||
|
path: src/github.com/RoaringBitmap/roaring
|
||
|
|
||
|
steps:
|
||
|
- name: test
|
||
|
image: golang
|
||
|
commands:
|
||
|
- go get -t
|
||
|
- go test
|
||
|
- go test -race -run TestConcurrent*
|
||
|
- go build -tags appengine
|
||
|
- go test -tags appengine
|
||
|
- GOARCH=386 go build
|
||
|
- GOARCH=386 go test
|
||
|
- GOARCH=arm go build
|
||
|
- GOARCH=arm64 go build
|