Skip to content

Commit e19180d

Browse files
authored
Merge pull request #76 from google/drinckes-rust-travis
Comment out rust config from travisci
2 parents 5461af7 + 324f555 commit e19180d

File tree

1 file changed

+18
-15
lines changed

1 file changed

+18
-15
lines changed

.travis.yml

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,34 +4,37 @@ language: node_js
44
node_js:
55
- "0.10"
66

7-
# For rust, we need to install cargo, rustc. In order to do that, we'll use
8-
# apt-get, which requires sudo.
9-
sudo: true
10-
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
7+
# TODO(issue #75): Fix rust travisCi config.
8+
## For rust, we need to install cargo, rustc. In order to do that, we'll use
9+
## apt-get, which requires sudo.
10+
#sudo: true
11+
#
12+
## The rust-nightly package is only built for 14.04 (Trusty) and 16.04 (Xenial),
13+
## so we cannot use the default Travis ubuntu image (Precise) for these tests.
14+
#dist: trusty
1415

1516
# Install package dependencies. See
1617
# http://docs.travis-ci.com/user/installing-dependencies/
1718
# gulp: required for JS testing
1819
before_install:
1920
- npm install -g gulp
20-
- yes | sudo add-apt-repository ppa:jonathonf/rustlang
21-
- yes | sudo add-apt-repository ppa:jonathonf/llvm
22-
- yes | sudo add-apt-repository ppa:jonathonf/gcc
23-
- sudo apt-get update
24-
25-
install:
26-
sudo apt-get -y install libstd-rust-1.16 libstd-rust-dev rustc cargo
21+
# TODO(issue #75): Fix rust travisCi config.
22+
# - yes | sudo add-apt-repository ppa:jonathonf/rustlang
23+
# - yes | sudo add-apt-repository ppa:jonathonf/llvm
24+
# - yes | sudo add-apt-repository ppa:jonathonf/gcc
25+
# - sudo apt-get update
26+
#
27+
#install:
28+
# sudo apt-get -y install libstd-rust-1.16 libstd-rust-dev rustc cargo
2729

2830
# Define the list of directories to execute tests in.
2931
env:
3032
- TEST_DIR=js
3133
- TEST_DIR=go
3234
- TEST_DIR=ruby
3335
- TEST_DIR=python
34-
- TEST_DIR=rust
36+
# TODO(issue #75): Fix rust travisCi config.
37+
# - TEST_DIR=rust
3538

3639
# Test script to run. This is called once for each TEST_DIR value above.
3740
script: ./run_tests.sh

0 commit comments

Comments
 (0)