forked from fsprojects/FsUnit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
26 lines (23 loc) · 842 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
language: csharp
matrix:
include:
- os: linux # Ubuntu 14.04
dist: trusty
sudo: required
dotnet: 1.0.0-preview2-003121
# Note that travis doesn't support dotnet cli rc4 via 'dotnet' yet,
# so we just use the old preview2 support to get things setup
# first, then manually add dotnet CLI RC4 during install.
env:
- CLI_VERSION=1.0.4
- os: osx # OSX 10.11
osx_image: xcode7.3
dotnet: 1.0.0-preview2-003121
env:
- CLI_VERSION=1.0.4
install:
- export DOTNET_INSTALL_DIR="$PWD/.dotnetcli"
- curl -sSL https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/dotnet-install.sh | bash /dev/stdin --version "$CLI_VERSION" --install-dir "$DOTNET_INSTALL_DIR"
- export PATH="$DOTNET_INSTALL_DIR:$PATH"
script:
- ./build.sh All