forked from fsprojects/FAKE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
35 lines (28 loc) · 956 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
language: csharp
sudo: required
dist: trusty # Ubuntu 14.04
env:
- HOME=/home/travis APPDATA=/home/travis LocalAppData=/home/travis
addons:
apt:
packages:
- libunwind8
before_script:
- wget https://github.com/fsharp/FAKE/releases/download/5.0.0-beta008/fake-dotnetcore-ubuntu.14.04-x64.zip -O /tmp/fake-dotnetcore-ubuntu.14.04-x64.zip
- mkdir fake-dotnetcore
- unzip /tmp/fake-dotnetcore-ubuntu.14.04-x64.zip -d fake-dotnetcore || echo unzip returned $?
- export PATH=$PATH:$PWD/fake-dotnetcore/
- chmod +x $PWD/fake-dotnetcore/fake
# - export FAKE="$PWD/fake-dotnetcore/Fake"
before install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install openssl ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew link --force openssl ; fi
mono:
- 5.0.1
script:
- fake run build.fsx
# - ./build.sh
branches:
except:
- gh-pages