forked from howeyc/fsnotify
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request howeyc#57 from go-fsnotify/ci
setup CircleCI to test on OS X
- Loading branch information
Showing
4 changed files
with
28 additions
and
2 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
## OS X build (CircleCI iOS beta) | ||
|
||
# Pretend like it's an Xcode project, at least to get it running. | ||
machine: | ||
environment: | ||
XCODE_WORKSPACE: NotUsed.xcworkspace | ||
XCODE_SCHEME: NotUsed | ||
# This is where the go project is actually checked out to: | ||
CIRCLE_BUILD_DIR: $HOME/.go_project/src/github.com/go-fsnotify/fsnotify | ||
|
||
dependencies: | ||
pre: | ||
- brew upgrade go | ||
|
||
test: | ||
override: | ||
- go test ./... | ||
|
||
# Idealized future config, eventually with cross-platform build matrix :-) | ||
|
||
# machine: | ||
# go: | ||
# version: 1.4 | ||
# os: | ||
# - osx | ||
# - linux |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters