您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

.drone.yml 370B

1234567891011121314151617181920
  1. kind: pipeline
  2. name: default
  3. workspace:
  4. base: /go
  5. path: src/github.com/RoaringBitmap/roaring
  6. steps:
  7. - name: test
  8. image: golang
  9. commands:
  10. - go get -t
  11. - go test
  12. - go test -race -run TestConcurrent*
  13. - go build -tags appengine
  14. - go test -tags appengine
  15. - GOARCH=386 go build
  16. - GOARCH=386 go test
  17. - GOARCH=arm go build
  18. - GOARCH=arm64 go build