File tree Expand file tree Collapse file tree 4 files changed +24
-2
lines changed
Expand file tree Collapse file tree 4 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 11language : csharp
22
3+ os :
4+ - linux
5+ - osx
6+
7+ mono :
8+ - latest
9+
310install :
411
12+ before_script :
13+ - chmod +x travis-autogen.sh
14+
515script :
6- - ./autogen.sh --prefix=/usr
16+ - ./travis- autogen.sh
717 - make
818 - sudo make install
919 - xbuild ./src/fsharp-library-unittests-build.proj /p:TargetFramework=net40 /p:Configuration=Release
1020 - (cd tests/projects; ./build.sh)
1121 - (cd tests/fsharp/core; ./run-opt.sh)
12-
Original file line number Diff line number Diff line change @@ -30,3 +30,4 @@ function pack($nuspec){
3030
3131pack(gi .\FSharp.Core.Nuget\FSharp.Core.nuspec)
3232pack(gi .\FSharp.Compiler.Tools.Nuget\FSharp.Compiler.Tools.nuspec)
33+
Original file line number Diff line number Diff line change 11#! /usr/bin/env sh
2+
23which autoreconf > /dev/null || (echo " Please install autoconf" && exit 1)
34autoreconf && ./configure $@
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env sh
2+
3+ if [[ $TRAVIS_OS_NAME == osx ]];
4+ then
5+ monoVer=$( mono --version | head -n 1 | cut -d' ' -f 5)
6+ prefix=" /Library/Frameworks/Mono.framework/Versions/$monoVer " ;
7+ else
8+ prefix=" /usr" ;
9+ fi
10+
11+ ./autogen.sh --prefix=$prefix
You can’t perform that action at this time.
0 commit comments