forked from gtk-rs/cairo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
65 lines (65 loc) · 1.55 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
language: rust
matrix:
include:
- os: linux
rust: nightly
env: GTK=3.4
- os: linux
rust: nightly
env: GTK=3.18
- os: linux
rust: beta
env: GTK=3.4
- os: linux
rust: beta
env: GTK=3.18
- os: linux
rust: stable
env: GTK=3.4
- os: linux
rust: stable
env: GTK=3.18
- os: osx
rust: nightly
env: GTK=3.4
# - os: osx
# rust: nightly
# env: GTK=3.18
- os: osx
rust: beta
env: GTK=3.4
# - os: osx
# rust: beta
# env: GTK=3.18
- os: osx
rust: stable
env: GTK=3.4
# - os: osx
# rust: stable
# env: GTK=3.18
sudo: true
addons:
apt:
packages:
- libgtk-3-dev
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew unlink python; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install gtk+3 cairo atk; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/opt/X11/lib/pkgconfig;
fi
script:
- rustc --version
- cargo update
- cargo test --features "png embed-lgpl-docs"
- cargo test --no-default-features --features "png"
- cargo doc --features "dox"
# catch any sneaked in lgpl docs
- cargo build --features purge-lgpl-docs
- git diff -R --exit-code
- mkdir .cargo
- echo 'paths = [".", "./cairo-sys-rs"]' > .cargo/config
- git clone -q --depth 50 -b pending https://github.com/gtk-rs/examples _examples
- cd _examples
- ./build_travis.sh