-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
34 lines (31 loc) · 1.05 KB
/
.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
version: ~> 1.0
matrix:
include:
- os: osx
osx_image: xcode7.3
- os: linux
dist: trusty
language: python
python: "3.6"
addons:
apt:
packages:
- libc++-dev
- libc++abi-dev
before_install:
- export PATH=$PATH:/Library/Frameworks/Python.framework/Versions/3.7/bin
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
curl -OL https://www.python.org/ftp/python/3.7.6/python-3.7.6-macosx10.9.pkg
&& sudo installer -pkg python-3.7.6-macosx10.9.pkg -target /
&& pip3 install conan
&& conan config install https://vuo.org/sites/default/files/conan-macos.zip
; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
pip3 install conan
&& conan config install https://vuo.org/sites/default/files/conan-linux.zip
; fi
install:
- conan user
script:
- conan create . vuo/stable
&& conan upload --remote vuo --all --no-overwrite all --confirm blackmagic/*