Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add osx to travis (on master branch) #308

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
language: csharp

sudo: false
matrix:
include:
- os: linux # Ubuntu 14.04
dist: trusty
sudo: required
mono: latest
- os: linux # Ubuntu 14.04
dist: trusty
sudo: required
mono: 4.0.5
- os: osx # OSX 10.11
osx_image: xcode7.2
mono: latest
- os: osx # OSX 10.11
osx_image: xcode7.2
mono: weekly
- os: osx # OSX 10.11
osx_image: xcode7.2
mono: nightly
- os: osx # OSX 10.11
osx_image: xcode7.2
mono: 4.0.5


script:
- ./build.sh GenerateDocs
Expand Down
2 changes: 1 addition & 1 deletion src/FsCheck/Gen.fs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ type Arbitrary<'a>() =


///Computation expression builder for Gen.
[<AutoOpen>]
[<AutoOpen; CompiledNameAttribute("Gen"); CompilationRepresentationAttribute(CompilationRepresentationFlags.None)>]
module GenBuilder =

let private result x = Gen (fun _ _ -> x)
Expand Down