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.

.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