-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy path.travis.yml
More file actions
43 lines (36 loc) · 764 Bytes
/
.travis.yml
File metadata and controls
43 lines (36 loc) · 764 Bytes
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
36
37
38
39
40
41
42
43
# https://travis-ci.org
language: cpp
compiler: clang
os: linux
dist: bionic
addons:
apt:
update: true
packages:
- libuv1-dev
- liblz4-dev
homebrew:
update: true
packages:
- lz4
- libuv
- libdeflate
cache:
apt: true
directories:
- $HOME/Library/Caches/Homebrew
jobs:
include:
- os: linux
- os: osx
osx_image: xcode11.4
- os: windows
compiler: msvc2017
script: |
if [ "$TRAVIS_OS_NAME" = "windows" ]; then
export "MSBUILD_PATH=/c/Program Files (x86)/Microsoft Visual Studio/2017/BuildTools/MSBuild/15.0/Bin"
export "PATH=$MSBUILD_PATH:$PATH"
msbuild.exe cli\\maxcso.sln -m -p:Configuration=Release -p:Platform=x64 -p:TrackFileAccess=false
else
make
fi