circle.yml 563 B

123456789101112131415161718192021222324252627
  1. ## OS X build (CircleCI iOS beta)
  2. # Pretend like it's an Xcode project, at least to get it running.
  3. machine:
  4. environment:
  5. XCODE_WORKSPACE: NotUsed.xcworkspace
  6. XCODE_SCHEME: NotUsed
  7. # This is where the go project is actually checked out to:
  8. CIRCLE_BUILD_DIR: $HOME/.go_project/src/github.com/go-fsnotify/fsnotify
  9. dependencies:
  10. pre:
  11. - brew upgrade go
  12. test:
  13. override:
  14. - go test ./...
  15. # Idealized future config, eventually with cross-platform build matrix :-)
  16. # machine:
  17. # go:
  18. # version: 1.4
  19. # os:
  20. # - osx
  21. # - linux