forked from tectonic-typesetting/tectonic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
62 lines (56 loc) · 1.36 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
# .travis.yml -- Travis CI specification file.
# Copyright 2016-2019 the Tectonic Project
# Licensed under the MIT License.
language: rust
cache: false
matrix:
include:
# Linux, Rust stable: the "main" build; we do code coverage, AppImage generation, etc.
- os: linux
sudo: required
dist: xenial
rust: stable
env: RUSTFLAGS="-C link-dead-code"
# Linux, Rust beta: just a smoke test
- os: linux
sudo: required
dist: xenial
rust: beta
# Linux, Rust nightly: not even a smoke test; failure is allowed
- os: linux
sudo: required
dist: xenial
rust: nightly
# MacOS, Rust stable: just a smoke test
- os: osx
osx_image: xcode10.2
rust: stable
# Static build for Linux/x86_64
- os: linux
sudo: required
dist: xenial
env: IMAGE=x86_64-alpine-linux-musl
allow_failures:
- rust: nightly
# Don't CI branches besides master. Pull requests still get CI'd -- but
# when a PR comes in on a branch in the same repo, this prevents it from
# being CI'd twice.
branches:
only:
- master
addons:
apt:
packages:
- libgraphite2-dev
- libharfbuzz-dev
- libfontconfig1-dev
- libicu-dev
- libssl-dev
- openssl
- zlib1g-dev
homebrew:
packages:
- harfbuzz
- openssl
install: true
script: source dist/travis.sh