Skip to content

Commit c0fa5de

Browse files
committed
TravisCI, again
Having a proper look at this; The rust-nightly package is only build for 14.04. Travis (by default) uses 12.04 (Precise), but has a 14.04 image which you can opt for. Hopefully this doesn't break anything else!
1 parent 904c44b commit c0fa5de

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.travis.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
1-
sudo: false
21
# Travis only supports one language per project, so we need to put something
32
# here. node_js is as good as any other I suppose.
43
language: node_js
54
node_js:
65
- "0.10"
76

7+
# For rust, we need to install cargo, rustc. In order to do that, we'll use
8+
# apt-get, which requires sudo.
89
sudo: true
910

11+
# The rust-nightly package is only built for 14.04 (Trusty) and 16.04 (Xenial),
12+
# so we cannot use the default Travis ubuntu image (Precise) for these tests.
13+
dist: trusty
14+
1015
# Install package dependencies. See
1116
# http://docs.travis-ci.com/user/installing-dependencies/
1217
# gulp: required for JS testing

0 commit comments

Comments
 (0)